summaryrefslogtreecommitdiff
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
commit3dd6e5384143de36f67f7e2fbcd681f58106c2f6 (patch)
treedc7b55fc40b6b90b12bc5deecb58894b302e02d8 /src/run.bash
parente37104fbffc2c74fffa76bdabd38462c7bc60786 (diff)
downloadgo-3dd6e5384143de36f67f7e2fbcd681f58106c2f6.tar.gz
runtime: more flexible heap memory mapping on 64-bits
Fixes issue 5641. R=golang-dev, dave, daniel.morsing, iant CC=golang-dev, kcc https://codereview.appspot.com/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 03570ab32..685bc8279 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 $?