about summary refs log tree commit diff
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.expect11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/chainlint/for-loop.expect b/t/chainlint/for-loop.expect
new file mode 100644
index 0000000000..c33cf56ee7
--- /dev/null
+++ b/t/chainlint/for-loop.expect
@@ -0,0 +1,11 @@
+(
+	for i in a b c
+	do
+?!AMP?!		echo $i
+		cat
+?!AMP?!	done
+	for i in a b c; do
+		echo $i &&
+		cat $i
+	done
+>)