We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24dd7d commit 2c711b3Copy full SHA for 2c711b3
peter-jr
@@ -142,6 +142,7 @@ findTests \
142
| (shuf 2>/dev/null || cat) \
143
| while read file
144
do
145
+ trap 'echo -e "\nAborted." >&2; exit 130' 2
146
printf "Testing %-${longestFilenameLen}s ... " "${file}"
147
ext="${file##*.}"
148
testName="${file%.failing}"
@@ -168,7 +169,7 @@ findTests \
168
169
exitCode="$?"
170
;;
171
"bash")
- eval timeout -s9 "${timeout:-${defaultTimeout}}" bash \"$file\"
172
+ eval timeout -s9 --foreground "${timeout:-${defaultTimeout}}" bash \"$file\"
173
174
175
*)
0 commit comments