fix regex more

This commit is contained in:
Thomas Levine 2016-02-28 19:34:47 +00:00
parent 968b539d15
commit 5b353b9734

View File

@ -15,7 +15,7 @@ echo "$contents" > $testcase
chmod +x $testcase
case "$expectation" in ok) regex='^ok 1 - testcase';;
not\ ok) regex='^not ok 1 - testcase';;
skip) regex='^ok 1 - testcase ([)]*) # SKIP';;
skip) regex='^ok 1 - testcase ([^)]*) # SKIP';;
*) exit 3;; # skip malformed test
esac