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/parser/include.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/parser/include.test')
-rw-r--r-- | unit-tests/test/script/parser/include.test | 50 |
1 files changed, 1 insertions, 49 deletions
diff --git a/unit-tests/test/script/parser/include.test b/unit-tests/test/script/parser/include.test index 1639d37..7910919 100644 --- a/unit-tests/test/script/parser/include.test +++ b/unit-tests/test/script/parser/include.test @@ -1,22 +1,3 @@ -: not-directive -: -$* <<EOI >>EOO -x = x -".include" 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 @@ -102,41 +83,12 @@ EOI } EOO -: var-expansion -: -cat <<EOI >>>"foo-$(build.version).test"; -cmd -EOI -$* <<EOI >>EOO -.include "foo-$(build.version).test" -EOI -cmd -EOO - -: after-semi -: -$* <<EOI 2>>EOE != 0 -cmd; -.include foo.test -EOI -testscript:2:1: error: directive after ';' -EOE - -: semi-after -: -$* <<EOI 2>>EOE != 0 -.include foo.test; -cmd -EOI -testscript:1:18: error: ';' after directive -EOE - : invalid-path : $* <<EOI 2>>EOE != 0 .include "" EOI -testscript:1:1: error: invalid testscript include path '' +testscript:1:2: error: invalid testscript include path '' EOE : unable-open |