From a8ad859c30c8d4c30c38ac41d858c9030d025ddd 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 #5641. R=golang-dev, dave, daniel.morsing, iant CC=golang-dev, kcc https://golang.org/cl/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 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 $? -- cgit v1.3-5-g9baa