From b40490c7bab9284209baa84dd854b140001c0b8c Mon Sep 17 00:00:00 2001 From: David Symonds Date: Tue, 31 Mar 2009 22:35:55 -0700 Subject: Bail out of gotest immediately if compiling fails. R=rsc APPROVED=rsc DELTA=4 (2 added, 2 deleted, 0 changed) OCL=26978 CL=26978 --- src/cmd/gotest/gotest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd/gotest') diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest index 0ec17322d..0c025e3b3 100755 --- a/src/cmd/gotest/gotest +++ b/src/cmd/gotest/gotest @@ -50,13 +50,13 @@ files=$(echo $gofiles | sed 's/\.go//g') # to build any test-only dependencies. sed -n 's/^\/\/ gotest: //p' $gofiles | sh +set -e + for i in $gofiles do $GC $i done -set -e - # They all compile; now generate the code to call them. trap "rm -f _testmain.go _testmain.6" 0 1 2 3 14 15 { -- cgit v1.2.3