diff options
author | Carl Worth <[email protected]> | 2010-05-28 08:04:13 -0700 |
---|---|---|
committer | Carl Worth <[email protected]> | 2010-05-28 08:04:13 -0700 |
commit | 9b519f9c7997e0ec02c66d39edc12912aebb9eca (patch) | |
tree | c916365899a052a2b75de10c63374636f6bcc06f | |
parent | 95ec433d59be234cf2695ae091cee4ace3314d21 (diff) |
Stop interrupting the test suite at the first failure.
This behavior was useful when starting the implementation over
("take-2") where the whole test suite was failing. This made it easy
to focus on one test at a time and get each working.
More recently, we got the whole suite working, so we don't need this
feature anymore. And in the previous commit, we regressed a couple of
tests, so it's nice to be able to see all the failures with a single
run of the suite.
-rwxr-xr-x | tests/glcpp-test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/glcpp-test b/tests/glcpp-test index 92c994979a9..ba398af0d54 100755 --- a/tests/glcpp-test +++ b/tests/glcpp-test @@ -1,5 +1,4 @@ #!/bin/sh -set -e for test in *.c; do echo "Testing $test" |