diff options
-rwxr-xr-x | run-tests.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/run-tests.sh b/run-tests.sh index 980290d9322..b3dbbf5d179 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -211,7 +211,7 @@ function run_all () | while read t; do old_cores=$(ls /core.* 2> /dev/null | wc -l) retval=0 - prove -f --timer $t + prove -mf --timer $t TMP_RES=$? if [ ${TMP_RES} -ne 0 ] ; then echo "$t: bad status $TMP_RES" @@ -227,6 +227,12 @@ function run_all () if is_bad_test $t; then echo "Ignoring failure from known-bad test $t" else + echo + echo "Running failed test $t in debug mode" + echo "Just for debug data, does not change test result" + echo + bash -x $t + echo return $retval fi fi |