From: Russ Cox Date: Wed, 29 Oct 2008 22:23:29 +0000 (-0700) Subject: set -e doesn't apply to ( ) blocks X-Git-Tag: weekly.2009-11-06~2863 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=527669e6b19156245e5f47a95e8c39ac0b164e18;p=gostls13.git set -e doesn't apply to ( ) blocks R=r DELTA=6 (0 added, 0 deleted, 6 changed) OCL=18044 CL=18068 --- diff --git a/src/run.bash b/src/run.bash index c88fa57a23..449e7ed234 100755 --- a/src/run.bash +++ b/src/run.bash @@ -15,28 +15,27 @@ xcd() { make clean time make bash test.bash -) +) || exit $? (xcd lib/regexp make clean time make make test -) +) || exit $? (xcd ../usr/gri/gosrc make clean time make # make test -) +) || exit $? (xcd ../usr/gri/pretty make clean time make make test -) - +) || exit $? (xcd ../test ./run -) +) || exit $?