Commit c025cf64 authored by David Symonds's avatar David Symonds

Bail out of gotest immediately if compiling fails.

R=rsc
APPROVED=rsc
DELTA=4  (2 added, 2 deleted, 0 changed)
OCL=26978
CL=26978
parent 78f7063d
......@@ -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
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment