aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-03-06 23:27:30 -0500
committerRuss Cox <rsc@golang.org>2012-03-06 23:27:30 -0500
commitc3f4319a241d646668f81de5e7109ce8938f79f2 (patch)
treeb7967af878d40cb9e421efbc247fcc6427f778c0 /src/run.bash
parent0bc18811b54b782a56b171eb0f8974f47f8638c0 (diff)
downloadgo-c3f4319a241d646668f81de5e7109ce8938f79f2.tar.xz
misc/cgo: re-enable some tests
The testso directory still needs to be enabled. R=golang-dev, r CC=golang-dev https://golang.org/cl/5731048
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/run.bash b/src/run.bash
index 7b1854865e..b5ffaa9974 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -35,32 +35,26 @@ go test sync -short -timeout=120s -cpu=10
xcd() {
echo
- echo --- cd $1
+ echo '#' $1
builtin cd "$GOROOT"/src/$1
}
BROKEN=true
-$BROKEN ||
[ "$CGO_ENABLED" != 1 ] ||
[ "$GOHOSTOS" == windows ] ||
(xcd ../misc/cgo/stdio
-"$GOMAKE" clean
./test.bash
) || exit $?
-$BROKEN ||
[ "$CGO_ENABLED" != 1 ] ||
(xcd ../misc/cgo/life
-"$GOMAKE" clean
./test.bash
) || exit $?
-$BROKEN ||
[ "$CGO_ENABLED" != 1 ] ||
(xcd ../misc/cgo/test
-"$GOMAKE" clean
-gotest
+go test
) || exit $?
$BROKEN ||