Raw
1 test_expect_success 'command-substitution-subsubshell' '
2 # LINT: subshell nested in subshell nested in command substitution
3 OUT=$( ((large_git 1>&3) | :) 3>&1 ) &&
4 test_match_signal 13 "$OUT"
5 '