]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/chain-break-status.test
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / t / chainlint / chain-break-status.test
1 # LINT: broken &&-chain okay if next command handles "$?" explicitly
2 OUT=$( ((large_git; echo $? 1>&3) | :) 3>&1 ) &&
3 test_match_signal 13 "$OUT" &&
4
5 # LINT: broken &&-chain okay if next command handles "$?" explicitly
6 { test-tool sigchain >actual; ret=$?; } &&
7 {
8 test_match_signal 15 "$ret" ||
9 test "$ret" = 3
10 } &&
11 test_cmp expect actual