diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-28 13:01:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:36 +0200 |
commit | 08ae9246421cf2b7269dc09dab2dbd5dc5d0817a (patch) | |
tree | 727dcf6be0a382a3a41f3ebf63d624ab893c786d /unit-tests/test/script/lexer/description-line.test | |
parent | fac9e22e90591b4c60d0e13c10c3abccf8c96a0f (diff) |
Add tests and fixes for trailing description support
Diffstat (limited to 'unit-tests/test/script/lexer/description-line.test')
-rw-r--r-- | unit-tests/test/script/lexer/description-line.test | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/unit-tests/test/script/lexer/description-line.test b/unit-tests/test/script/lexer/description-line.test index f0f0c9f..1d317eb 100644 --- a/unit-tests/test/script/lexer/description-line.test +++ b/unit-tests/test/script/lexer/description-line.test @@ -2,16 +2,20 @@ test.arguments += description-line $* <" foo bar " >>EOO # full ' foo bar ' +<newline> EOO $* <" " >>EOO # space ' ' +<newline> EOO $* <"" >>EOO # empty -'' +<newline> EOO -$* <:"foo" 2>>EOE != 0 # eof +$* <:"foo" >>EOO 2>>EOE != 0 # eof +'foo' +EOO stdin:1:4: error: expected newline at the end of description line EOE |