From 3dd6e5384143de36f67f7e2fbcd681f58106c2f6 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Wed, 12 Jun 2013 18:47:16 +0400 Subject: 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 --- src/run.bash | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/run.bash') 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 $? -- cgit v1.2.1