Commit 527669e6 authored by Russ Cox's avatar Russ Cox

set -e doesn't apply to ( ) blocks

R=r
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=18044
CL=18068
parent cc5a3828
......@@ -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 $?
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