]> Cypherpunks repositories - gostls13.git/commitdiff
build: update all-qemu.bash
authorRuss Cox <rsc@golang.org>
Thu, 28 Jul 2011 17:04:30 +0000 (13:04 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 28 Jul 2011 17:04:30 +0000 (13:04 -0400)
nothing but GOARCH=arm makes sense.
http/cgi uses network too.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4800053

src/all-qemu.bash

index c7079ba13939be666e7feeff7f3cad35f9957147..6a659d6d4c90e7031ac8d6f01b0e58d81e2012dd 100755 (executable)
@@ -6,11 +6,11 @@
 # Run all.bash but exclude tests that depend on functionality
 # missing in QEMU's system call emulation.
 
+export GOARCH=arm
 export NOTEST=""
-
 NOTEST="$NOTEST big" # just slow
 NOTEST="$NOTEST go/build" # wants to run cgo
-NOTEST="$NOTEST http net rpc syslog websocket"  # no localhost network
+NOTEST="$NOTEST http http/cgi net rpc syslog websocket"  # no localhost network
 NOTEST="$NOTEST os"  # 64-bit seek fails
 
 ./all.bash