summaryrefslogtreecommitdiff
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
commit934aed1ea316443d6786a972a8e1f5bfb5723212 (patch)
tree7482023078b10d495645ca573113efbd1675dec7 /src/run.bash
parent9c217e0c9a87b270fd72e580cd2c80ddf59b8498 (diff)
downloadgo-934aed1ea316443d6786a972a8e1f5bfb5723212.tar.gz
misc/cgo: re-enable some tests
The testso directory still needs to be enabled. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/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 7b1854865..b5ffaa997 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 ||