diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-09 11:29:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-09 11:29:23 +0200 |
commit | f1cbb7c9d5c750366fa1918a53d0682f0633b1d9 (patch) | |
tree | f5b49b2b1052e693e5f26ec9cfdcee3d3d4e13c3 /unit-tests/test/script/parser/include.test | |
parent | feab490f5f34bf8ecc52d2a439e68b3f2644ab47 (diff) |
Various minor semantics changes in testscript language
The .include directive and if-else no longer have to be separated from the
following token. This allows to make the decision by looking at just one
token.
The test scope can no longer have a description inside the scope. It should
always be leading the scope itself.
Diffstat (limited to 'unit-tests/test/script/parser/include.test')
-rw-r--r-- | unit-tests/test/script/parser/include.test | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/unit-tests/test/script/parser/include.test b/unit-tests/test/script/parser/include.test index 8210172..65ce7ce 100644 --- a/unit-tests/test/script/parser/include.test +++ b/unit-tests/test/script/parser/include.test @@ -1,14 +1,22 @@ : not-directive : $* <<EOI >>EOO -x = +x = x ".include" foo.test -.include\$x foo.test +.include'' foo.test EOI .include foo.test .include foo.test EOO +: not-separated +: +touch foo.test; +$* <<EOI +x = foo.test +.include\$x +EOI + : none : $* <<EOI |