From 4881a227779a78db1de2a7723e2a86f2b61453b3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 20 Oct 2022 19:39:57 +0300 Subject: Change attribute syntax in script to come after variable in set and for (set x [...], for x [...]) --- tests/test/script/runner/for.testscript | 55 ++++++++++++++++++++++++--------- 1 file changed, 40 insertions(+), 15 deletions(-) (limited to 'tests/test/script/runner/for.testscript') diff --git a/tests/test/script/runner/for.testscript b/tests/test/script/runner/for.testscript index 658ff49..765b978 100644 --- a/tests/test/script/runner/for.testscript +++ b/tests/test/script/runner/for.testscript @@ -33,11 +33,11 @@ : special-var : $c <>EOE != 0 - for *: -a -b - echo $* >| + for ~: -a -b + echo $~ >| end EOI - testscript:1:5: error: attempt to set '*' variable directly + testscript:1:5: error: attempt to set '~' variable directly EOE : exit @@ -109,7 +109,7 @@ : typed : $c <>/EOO - echo "a b" | for -w [dir_path] x + echo "a b" | for -w x [dir_path] echo $x >| end EOI @@ -208,24 +208,49 @@ : special-var : $c <>EOE != 0 - echo "a b" | for -w * + echo "a b" | for -w ~ echo $* >| end EOI - testscript:1:1: error: attempt to set '*' variable directly + testscript:1:1: error: attempt to set '~' variable directly info: test id: 1 EOE - : misuse + : unsep-attrs : $c <>EOE != 0 - echo "a b" | for v: - echo $v >| + echo "a b" | for -w x[string] + echo $x >| end EOI - testscript:1:19: error: expected newline instead of ':' + testscript:1:1: error: for: expected variable name instead of x[string] + info: test id: 1 EOE + : misuse + : + { + : after-var + : + $c <>EOE != 0 + echo "a b" | for v: + echo $v >| + end + EOI + testscript:1:19: error: expected newline instead of ':' + EOE + + : after-attrs + : + $c <>EOE != 0 + echo "a b" | for v [string]: + echo $v >| + end + EOI + testscript:1:28: error: expected newline instead of ':' + EOE + } + : exit : $c <>EOO @@ -343,7 +368,7 @@ : typed : $c <>/EOO - for -w [dir_path] x <"a b" + for -w x [dir_path] <"a b" echo $x >| end EOI @@ -354,7 +379,7 @@ : typed-no-ops : $c <>/EOO - for [dir_path] x <"a b" + for x [dir_path] <"a b" echo $x >| end EOI @@ -443,11 +468,11 @@ : special-var : $c <>EOE != 0 - for * <"a b" - echo $* >| + for ~ <"a b" + echo $~ >| end EOI - testscript:1:5: error: attempt to set '*' variable directly + testscript:1:5: error: attempt to set '~' variable directly EOE : exit -- cgit v1.1