aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/scope-specific
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-02-26 09:53:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-03 15:23:09 +0200
commit57c4e39dcb8eb6013e22cfe82597111c5c6a55af (patch)
treeeaf81473dbda167a187f01a632d39ba2f4908c71 /tests/variable/scope-specific
parent4b9de5c80934772dbc5503e65e265da452ca356a (diff)
Regularize directory target/scope-specific variable assignment syntax
Diffstat (limited to 'tests/variable/scope-specific')
-rw-r--r--tests/variable/scope-specific/buildfile5
-rw-r--r--tests/variable/scope-specific/testscript54
2 files changed, 59 insertions, 0 deletions
diff --git a/tests/variable/scope-specific/buildfile b/tests/variable/scope-specific/buildfile
new file mode 100644
index 0000000..2f3de77
--- /dev/null
+++ b/tests/variable/scope-specific/buildfile
@@ -0,0 +1,5 @@
+# file : tests/variable/scope-specific/buildfile
+# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+./: test{testscript} $b
diff --git a/tests/variable/scope-specific/testscript b/tests/variable/scope-specific/testscript
new file mode 100644
index 0000000..1f5f5fb
--- /dev/null
+++ b/tests/variable/scope-specific/testscript
@@ -0,0 +1,54 @@
+# file : tests/variable/scope-specific/testscript
+# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+.include ../../common.test
+
+: basic-line
+:
+$* <<EOI >>EOO
+x = x
+foo/ x = X
+foo/ [uint64] y=00
+print $x
+print $(foo/ x)
+print $(foo/ y)
+EOI
+x
+X
+0
+EOO
+
+: basic-block
+:
+$* <<EOI >>EOO
+x = x
+foo/
+{
+ x = X
+ [uint64] y = 00
+ print $x
+}
+print $x
+print $(foo/ y)
+EOI
+X
+x
+0
+EOO
+
+: expect-assignment
+:
+$* <<EOI 2>>EOE != 0
+foo/ [uint64] y
+EOI
+<stdin>:1:16: error: variable assignment expected instead of <newline>
+EOE
+
+: unexpected-attribute
+:
+$* <<EOI 2>>EOE != 0
+[uint64] foo/ y = 0
+EOI
+<stdin>:1:1: error: attributes before scope directory
+EOE