From 5b353b9734fbb8dc07271db14a9228b786201712 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Sun, 28 Feb 2016 19:34:47 +0000 Subject: [PATCH] fix regex more --- tests/Single-file test suites/.test_testsuite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Single-file test suites/.test_testsuite b/tests/Single-file test suites/.test_testsuite index a10340b..b3647da 100755 --- a/tests/Single-file test suites/.test_testsuite +++ b/tests/Single-file test suites/.test_testsuite @@ -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