diff options
Diffstat (limited to 'tests/test/script/runner/status.test')
-rw-r--r-- | tests/test/script/runner/status.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test/script/runner/status.test b/tests/test/script/runner/status.test index 941d485..e115f13 100644 --- a/tests/test/script/runner/status.test +++ b/tests/test/script/runner/status.test @@ -7,33 +7,33 @@ b += --no-column if ($cxx.target.class == "windows") - ext = ".exe" + ext = .exe end # Successfull tests. # : eq-true : -$c <"$* == 0"; +$c <'$* == 0'; $b : ne-true : -$c <"$* -s 1 != 0"; +$c <'$* -s 1 != 0'; $b # Faulty tests. # : eq-false : -$c <"$* -s 1 == 0"; +$c <'$* -s 1 == 0'; $b 2>>"EOE" != 0 testscript:1: error: $path.canonicalize(../../../driver$ext) exit status 1 != 0 EOE : ne-false : -$c <"$* -s 1 != 1"; +$c <'$* -s 1 != 1'; $b 2>>"EOE" != 0 testscript:1: error: $path.canonicalize(../../../driver$ext) exit status 1 == 1 EOE |