aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/test/script/parser+pre-parse.test.testscript
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/test/script/parser+pre-parse.test.testscript')
-rw-r--r--libbuild2/test/script/parser+pre-parse.test.testscript12
1 files changed, 6 insertions, 6 deletions
diff --git a/libbuild2/test/script/parser+pre-parse.test.testscript b/libbuild2/test/script/parser+pre-parse.test.testscript
index f98512a..b2839eb 100644
--- a/libbuild2/test/script/parser+pre-parse.test.testscript
+++ b/libbuild2/test/script/parser+pre-parse.test.testscript
@@ -5,19 +5,19 @@
: attribute
:
{
- : pair
+ : name
:
$* <<EOI 2>>EOE != 0
- x = [foo=bar]
+ x = [foo]
EOI
- testscript:1:5: error: unknown value attribute foo=bar
+ testscript:1:5: error: unknown value attribute foo
EOE
- : pair-empty
+ : name-value
:
$* <<EOI 2>>EOE != 0
- x = [foo=]
+ x = [foo=bar]
EOI
- testscript:1:5: error: unknown value attribute foo
+ testscript:1:5: error: unknown value attribute foo=bar
EOE
}