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/set.testscript | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests/test/script/runner/set.testscript') diff --git a/tests/test/script/runner/set.testscript b/tests/test/script/runner/set.testscript index b4c8089..b22e3f0 100644 --- a/tests/test/script/runner/set.testscript +++ b/tests/test/script/runner/set.testscript @@ -76,7 +76,7 @@ : empty-attrs : - $c <"set '' baz" && $b 2>>EOE != 0 + $c <"set baz ''" && $b 2>>EOE != 0 testscript:1:1: error: set: empty variable attributes info: test id: 1 EOE @@ -546,14 +546,14 @@ : dir_path : $c </'foo/' EOI : null : $c <'' EOI @@ -571,7 +571,7 @@ : empty-brackets : $c <>EOE != 0 - set -w '[]' baz <'foo bar'; + set -w baz '[]' <'foo bar'; echo "$baz" EOI testscript:2:8: error: concatenating variable expansion contains multiple values @@ -580,7 +580,7 @@ : no-left-bracket : $c <>EOE != 0 - set -w x baz + set -w baz x EOI :1:1: error: expected '[' instead of 'x' testscript:1:1: info: while parsing attributes 'x' @@ -590,7 +590,7 @@ : unknown : $c <>EOE != 0 - set -w [x] baz + set -w baz [x] EOI :1:1: error: unknown value attribute x testscript:1:1: info: while parsing attributes '[x]' @@ -600,7 +600,7 @@ : junk : $c <>EOE != 0 - set -w '[string] x' baz + set -w baz '[string] x' EOI :1:10: error: trailing junk after ']' testscript:1:1: info: while parsing attributes '[string] x' -- cgit v1.1