diff options
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 |