From fa21df31440d6fb64eebffdc9a1c5c958af8c118 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Thu, 15 Nov 2012 13:59:46 +1100 Subject: [PATCH] run.bash: fix linux/arm build Revert to the shell builtin to avoid hosts that do not have /usr/bin/time. R=golang-dev, iant CC=golang-dev https://golang.org/cl/6848054 --- src/run.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/run.bash b/src/run.bash index a8ab189474..83859781c1 100755 --- a/src/run.bash +++ b/src/run.bash @@ -115,7 +115,8 @@ echo '#' ../test/bench/go1 go test ../test/bench/go1 (xcd ../test -GOMAXPROCS= time go run run.go +unset GOMAXPROCS +time go run run.go ) || exit $? echo -- 2.48.1