diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-07-17 18:57:02 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-07-17 18:57:02 -0700 |
commit | 9991e59f7d3b816a00ed79f9034743d703976dc1 (patch) | |
tree | 9b3240a51e49d60ae524367348ae2992f41499ae | |
parent | 5293e86e5185b959a442633c93445ecfde107d1e (diff) | |
download | cppawk-9991e59f7d3b816a00ed79f9034743d703976dc1.tar.gz cppawk-9991e59f7d3b816a00ed79f9034743d703976dc1.tar.bz2 cppawk-9991e59f7d3b816a00ed79f9034743d703976dc1.zip |
Support "base" argument to runtests.
This allows ./runtests base to just run the tests
in the testcases file, the same way that, for instance,
./runtests cons runs the testcases-cons tests.
-rwxr-xr-x | runtests | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ trap 'rm -f output script.sh' EXIT INT TERM suite=$1 -if [ -z "$suite" ] ; then +if [ -z "$suite" -o "$suite" = "base" ] ; then cppawk=./bin/cppawk ./testsuite.awk testcases cppawk="./bin/cppawk --nobash" ./testsuite.awk testcases fi |