diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-04 17:44:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-04 17:44:39 +0200 |
commit | a63e1809afd9a837821d6e8376cb14a36e7fc26e (patch) | |
tree | 92a79a14dbab94c7893dee8994d03ab645690852 /unit-tests/test/script/lexer/first-token.test | |
parent | aab54ca12373bc7df1323017e4fb0b9594dcb835 (diff) |
Treat any testscript line that starts with dot as directive
Even though we currently only recognize the include directive, we
reserve any line that begins with a dot for future.
Diffstat (limited to 'unit-tests/test/script/lexer/first-token.test')
-rw-r--r-- | unit-tests/test/script/lexer/first-token.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unit-tests/test/script/lexer/first-token.test b/unit-tests/test/script/lexer/first-token.test index d42e0b2..8a6d39b 100644 --- a/unit-tests/test/script/lexer/first-token.test +++ b/unit-tests/test/script/lexer/first-token.test @@ -2,6 +2,11 @@ # test.arguments = first-token +$* <"." >>EOO # dot +. +<newline> +EOO + $* <";" >>EOO # semi ; <newline> |