mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 11:58:10 +01:00
test: Leave tmp.<testname> for broken tests
Previously, this directory was only preserved for failing tests. But it's important to be able to easily debug known-broken tests, so preserve the actual vs. expected output for those as well.
This commit is contained in:
parent
a18a15326c
commit
b41aab78f2
2 changed files with 7 additions and 1 deletions
|
@ -71,6 +71,7 @@ output=$(cd ..; ./test-verbose -v 2>&1 | suppress_diff_date)
|
|||
expected=$(cat $EXPECTED/test-verbose-yes | suppress_diff_date)
|
||||
# Do not include the results of test-verbose in totals
|
||||
rm $TEST_DIRECTORY/test-results/test-verbose-*
|
||||
rm -r $TEST_DIRECTORY/tmp.test-verbose
|
||||
test_expect_equal "$output" "$expected"
|
||||
|
||||
|
||||
|
|
|
@ -454,6 +454,9 @@ test_expect_equal_failure ()
|
|||
test_known_broken_ok_ "$test_subtest_name"
|
||||
else
|
||||
test_known_broken_failure_ "$test_subtest_name"
|
||||
testname=$this_test.$test_count
|
||||
echo "$expected" > $testname.expected
|
||||
echo "$output" > $testname.output
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
@ -754,7 +757,9 @@ test_done () {
|
|||
echo
|
||||
|
||||
if [ "$test_failure" = "0" ]; then
|
||||
if [ "$test_broken" = "0" ]; then
|
||||
rm -rf "$remove_tmp"
|
||||
fi
|
||||
exit 0
|
||||
else
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue