]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/chainlint/for-loop.expect
Merge branch 'vd/fsck-submodule-url-test'
[thirdparty/git.git] / t / chainlint / for-loop.expect
index 6671b8cd842de110882342fc4ee359eb7e4d1375..d2237f1e38fad73938ff6335dac9de538e337caa 100644 (file)
@@ -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
 )