summaryrefslogtreecommitdiff
path: root/t/chainlint/for-loop.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/for-loop.expect')
-rw-r--r--t/chainlint/for-loop.expect7
1 files changed, 5 insertions, 2 deletions
diff --git a/t/chainlint/for-loop.expect b/t/chainlint/for-loop.expect
index 6671b8c..d2237f1 100644
--- a/t/chainlint/for-loop.expect
+++ b/t/chainlint/for-loop.expect
@@ -2,10 +2,13 @@
for i in a b c
do
echo $i ?!AMP?!
- cat <<-EOF
+ cat <<-\EOF ?!LOOP?!
+ bar
+ EOF
done ?!AMP?!
+
for i in a b c; do
echo $i &&
- cat $i
+ cat $i ?!LOOP?!
done
)