diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-09 17:29:27 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-12-09 17:29:27 +0200 |
commit | ea22643b2217921df74ea14df47d7c83987d5761 (patch) | |
tree | 91480771997be1b7f92f46ee404c266e0f4dcd76 /unit-tests/test/script/lexer/variable.test | |
parent | 1a9d610051cd48c98fb71a570a0871b4e073cec9 (diff) |
Initial parallel scheduler implementation, use to run testscrips
Diffstat (limited to 'unit-tests/test/script/lexer/variable.test')
-rw-r--r-- | unit-tests/test/script/lexer/variable.test | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/unit-tests/test/script/lexer/variable.test b/unit-tests/test/script/lexer/variable.test index 6478fea..302a8b1 100644 --- a/unit-tests/test/script/lexer/variable.test +++ b/unit-tests/test/script/lexer/variable.test @@ -29,18 +29,12 @@ $* <"0" >>EOO <newline> EOO -$* <"10" >>EOO -'10' -<newline> -EOO - -$* <"101" >>EOO -'101' -<newline> -EOO - $* <"1abc" >>EOO '1' 'abc' <newline> EOO + +$* <"10" 2>>EOE != 0 +stdin:1:1: error: multi-digit special variable name +EOE |