diff options
Diffstat (limited to 'third_party/git/t/chainlint/case.expect')
-rw-r--r-- | third_party/git/t/chainlint/case.expect | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/git/t/chainlint/case.expect b/third_party/git/t/chainlint/case.expect new file mode 100644 index 000000000000..41f121fbbf9c --- /dev/null +++ b/third_party/git/t/chainlint/case.expect @@ -0,0 +1,19 @@ +( + case "$x" in + x) foo ;; + *) bar ;; + esac && + foobar +>) && +( + case "$x" in + x) foo ;; + *) bar ;; +?!AMP?! esac + foobar +>) && +( + case "$x" in 1) true;; esac && +?!AMP?! case "$y" in 2) false;; esac + foobar +>) |