diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-09 15:10:56 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-11 14:31:39 +0300 |
commit | 32f153664e7b6cadfb518b83e12b9768a150d709 (patch) | |
tree | 706d683404d412e29e4cbd4640ce8b2780689c65 /tests/test/script/runner/timeout.testscript | |
parent | ec16a07c4bc3f3552ba5b4d09d3c5c375fb19e35 (diff) |
Prefix pseudo-builtin diagnostincs messages with their names
Diffstat (limited to 'tests/test/script/runner/timeout.testscript')
-rw-r--r-- | tests/test/script/runner/timeout.testscript | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test/script/runner/timeout.testscript b/tests/test/script/runner/timeout.testscript index bf39034..5f87d39 100644 --- a/tests/test/script/runner/timeout.testscript +++ b/tests/test/script/runner/timeout.testscript @@ -54,14 +54,14 @@ : missing : $c <'timeout' && $b 2>>~%EOE% != 0 - testscript:1:1: error: missing timeout + testscript:1:1: error: timeout: missing timeout %. EOE : invalid : $c <'timeout foo' && $b 2>>~%EOE% != 0 - testscript:1:1: error: invalid test fragment timeout 'foo' + testscript:1:1: error: timeout: invalid test fragment timeout 'foo' %. EOE } @@ -121,7 +121,7 @@ +timeout foo/ } EOI - testscript:2:4: error: invalid test group timeout 'foo' + testscript:2:4: error: timeout: invalid test group timeout 'foo' %. EOE } @@ -176,7 +176,7 @@ +timeout /foo } EOI - testscript:2:4: error: invalid test timeout 'foo' + testscript:2:4: error: timeout: invalid test timeout 'foo' %. EOE } @@ -229,7 +229,7 @@ $c <<EOI && $b 2>>~%EOE% != 0 +timeout foo/ EOI - testscript:1:2: error: invalid testscript timeout 'foo' + testscript:1:2: error: timeout: invalid testscript timeout 'foo' %. EOE @@ -300,7 +300,7 @@ +timeout /foo } EOI - testscript:2:4: error: invalid test timeout 'foo' + testscript:2:4: error: timeout: invalid test timeout 'foo' %. EOE } |