diff options
Diffstat (limited to 't/chainlint')
-rw-r--r-- | t/chainlint/close-nested-and-parent-together.expect | 3 | ||||
-rw-r--r-- | t/chainlint/complex-if-in-cuddled-loop.expect | 3 | ||||
-rw-r--r-- | t/chainlint/cuddled-if-then-else.expect | 3 | ||||
-rw-r--r-- | t/chainlint/cuddled-loop.expect | 3 | ||||
-rw-r--r-- | t/chainlint/cuddled.expect | 12 | ||||
-rw-r--r-- | t/chainlint/inline-comment.expect | 3 | ||||
-rw-r--r-- | t/chainlint/semicolon.expect | 3 |
7 files changed, 10 insertions, 20 deletions
diff --git a/t/chainlint/close-nested-and-parent-together.expect b/t/chainlint/close-nested-and-parent-together.expect index 5ef509eb49..72d482f76d 100644 --- a/t/chainlint/close-nested-and-parent-together.expect +++ b/t/chainlint/close-nested-and-parent-together.expect @@ -1,4 +1,3 @@ -( -cd foo && +(cd foo && (bar && baz)) diff --git a/t/chainlint/complex-if-in-cuddled-loop.expect b/t/chainlint/complex-if-in-cuddled-loop.expect index b8aa626ed0..2fca183409 100644 --- a/t/chainlint/complex-if-in-cuddled-loop.expect +++ b/t/chainlint/complex-if-in-cuddled-loop.expect @@ -1,5 +1,4 @@ -( -for i in a b c; do +(for i in a b c; do if test "$(echo $(waffle bat))" = "eleventeen" && test "$x" = "$y"; then : diff --git a/t/chainlint/cuddled-if-then-else.expect b/t/chainlint/cuddled-if-then-else.expect index 4e089b087a..1d8ed58c49 100644 --- a/t/chainlint/cuddled-if-then-else.expect +++ b/t/chainlint/cuddled-if-then-else.expect @@ -1,5 +1,4 @@ -( -if test -z ""; then +(if test -z ""; then echo empty else echo bizzy diff --git a/t/chainlint/cuddled-loop.expect b/t/chainlint/cuddled-loop.expect index 7932303763..9cf260708e 100644 --- a/t/chainlint/cuddled-loop.expect +++ b/t/chainlint/cuddled-loop.expect @@ -1,5 +1,4 @@ -( - while read x +( while read x do foobar bop || exit 1 done <file ) && outside subshell diff --git a/t/chainlint/cuddled.expect b/t/chainlint/cuddled.expect index 773476adc8..c3e0be4047 100644 --- a/t/chainlint/cuddled.expect +++ b/t/chainlint/cuddled.expect @@ -1,10 +1,8 @@ -( -cd foo && +(cd foo && bar ) && -( -cd foo ?!AMP?! +(cd foo ?!AMP?! bar ) && @@ -12,10 +10,8 @@ cd foo ?!AMP?! cd foo && bar) && -( -cd foo && +(cd foo && bar) && -( -cd foo ?!AMP?! +(cd foo ?!AMP?! bar) diff --git a/t/chainlint/inline-comment.expect b/t/chainlint/inline-comment.expect index f6b42757d2..dd0dace077 100644 --- a/t/chainlint/inline-comment.expect +++ b/t/chainlint/inline-comment.expect @@ -4,6 +4,5 @@ flibble "not a # comment" ) && -( -cd foo && +(cd foo && flibble "not a # comment") diff --git a/t/chainlint/semicolon.expect b/t/chainlint/semicolon.expect index 05141a96cf..ed0b3707ae 100644 --- a/t/chainlint/semicolon.expect +++ b/t/chainlint/semicolon.expect @@ -13,8 +13,7 @@ ( foo; ) && -( -cd foo && +(cd foo && for i in a b c; do echo; done) |