commit fe7842f5ed4cf6497d003ac69dbbf2966cd96611 from: Stefan Sperling date: Sun Jul 14 13:04:58 2019 UTC run 'git fsck' after every cmdline test commit - cd98404f2f7be2735f1190fefa76b86a54cec97c commit + fe7842f5ed4cf6497d003ac69dbbf2966cd96611 blob - 05565fef26b7848ff5d3ce99c04bb7ddf94780e2 blob + 6ff541cab011dd1af18dea1cf0583fd6cb05efa3 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -112,6 +112,17 @@ function test_init function test_cleanup { local testroot="$1" + + (cd $testroot/repo && git fsck --strict \ + > $testroot/fsck.stdout 2> $testroot/fsck.stderr) + ret="$?" + if [ "$ret" != "0" ]; then + echo -n "git fsck: " + cat $testroot/fsck.stderr + echo "git fsck failed; leaving test data in $testroot" + return 1 + fi + rm -rf "$testroot" } @@ -127,11 +138,11 @@ function test_done local testroot="$1" local result="$2" if [ "$result" == "0" ]; then - test_cleanup "$testroot" + test_cleanup "$testroot" || return 1 echo "ok" elif echo "$result" | grep -q "^xfail"; then # expected test failure; test reproduces an unfixed bug - test_cleanup "$testroot" + test_cleanup "$testroot" || return 1 echo "$result" else echo "test failed; leaving test data in $testroot"