aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2013-06-12 18:47:16 +0400
committerDmitriy Vyukov <dvyukov@google.com>2013-06-12 18:47:16 +0400
commita8ad859c30c8d4c30c38ac41d858c9030d025ddd (patch)
tree1f826dc7513960f88c0a28222e4a5e2c91de1823 /src/run.bash
parentdbcfed93e75b91819bd01eb228996073b18c8196 (diff)
downloadgo-a8ad859c30c8d4c30c38ac41d858c9030d025ddd.tar.xz
runtime: more flexible heap memory mapping on 64-bits
Fixes #5641. R=golang-dev, dave, daniel.morsing, iant CC=golang-dev, kcc https://golang.org/cl/10126044
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/run.bash b/src/run.bash
index 03570ab328..685bc8279c 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -108,6 +108,12 @@ esac
./test.bash
) || exit $?
+[ "$CGO_ENABLED" != 1 ] ||
+[ "$GOHOSTOS-$GOARCH" != linux-amd64 ] ||
+(xcd ../misc/cgo/testasan
+go run main.go
+) || exit $?
+
(xcd ../doc/progs
time ./run
) || exit $?