aboutsummaryrefslogtreecommitdiff
path: root/unit-tests
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/test/script/parser/description.test49
-rw-r--r--unit-tests/test/script/parser/include.test12
2 files changed, 31 insertions, 30 deletions
diff --git a/unit-tests/test/script/parser/description.test b/unit-tests/test/script/parser/description.test
index 48a2faf..1b3f358 100644
--- a/unit-tests/test/script/parser/description.test
+++ b/unit-tests/test/script/parser/description.test
@@ -308,9 +308,11 @@ EOE
# Interaction with test scope merging.
#
-# No merge since both have description.
-#
-$* -s -i <<EOI >>EOO # test-scope-both
+: test-scope-both
+:
+: No merge since both have description.
+:
+$* -s -i <<EOI >>EOO
: foo
{
: bar
@@ -328,26 +330,32 @@ EOI
}
EOO
-$* -s -i <<EOI >>EOO # test-scope-group
-: foo-bar
-: foo bar
+: test-scope-test
+:
+: No merge since test has description.
+:
+$* -s -i <<EOI >>EOO #
{
+ : foo-bar
+ : foo bar
cmd
}
EOI
{
- : id:foo-bar
- : sm:foo bar
- { # foo-bar
- cmd
+ { # 1
+ : id:foo-bar
+ : sm:foo bar
+ { # 1/foo-bar
+ cmd
+ }
}
}
EOO
-$* -s -i <<EOI >>EOO # test-scope-test
+$* -s -i <<EOI >>EOO # test-scope-group
+: foo-bar
+: foo bar
{
- : foo-bar
- : foo bar
cmd
}
EOI
@@ -359,18 +367,3 @@ EOI
}
}
EOO
-
-# Id conflict once moved to outer scope.
-#
-$* <<EOI 2>>EOE != 0 # test-scope-id-dup
-: foo
-cmd
-{
- : foo
- cmd
-}
-cmd
-EOI
-testscript:4:3: error: duplicate id foo
- testscript:1:1: info: previously used here
-EOE
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