From: Luuk van Dijk Date: Wed, 24 Aug 2011 14:12:20 +0000 (+0200) Subject: test: put GOROOT/bin before all others in run X-Git-Tag: weekly.2011-09-01~102 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=940281bd3c4f3cb323ff39041ac440779fade828;p=gostls13.git test: put GOROOT/bin before all others in run If you installed a 6g in /usr/bin it interferes with test/run otherwise. R=rsc CC=golang-dev https://golang.org/cl/4944046 --- diff --git a/test/run b/test/run index bc31d2f714..d6f57272c7 100755 --- a/test/run +++ b/test/run @@ -31,7 +31,7 @@ unset GREP_OPTIONS # in case user has a non-standard set failed=0 -PATH=/bin:/usr/bin:/usr/local/bin:${GOBIN:-$GOROOT/bin}:`pwd` +PATH=${GOBIN:-$GOROOT/bin}:`pwd`:/bin:/usr/bin:/usr/local/bin RUNFILE="/tmp/gorun-$$-$USER" TMP1FILE="/tmp/gotest1-$$-$USER"