From 9991e59f7d3b816a00ed79f9034743d703976dc1 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 17 Jul 2022 18:57:02 -0700 Subject: 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. --- runtests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests b/runtests index e685db1..961bc19 100755 --- a/runtests +++ b/runtests @@ -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 -- cgit v1.2.3