summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2020-08-29 22:37:32 +0100
committerBen Hutchings <ben@decadent.org.uk>2020-08-29 22:37:32 +0100
commite8e56b8d3b3785ff84385a9affa9d366bdcefe84 (patch)
tree7a272d74237e358f75f2ecfcb5dd3e4943786860
parent9b0bdf020ee950e801868e9220c19ae5711b48f6 (diff)
downloadklibc-maint-e8e56b8d3b3785ff84385a9affa9d366bdcefe84.tar.gz
test-many-klibc: Don't clean the build directory after a failure
After a build or test failure it's useful to leave the build directory behind for investigations.
-rwxr-xr-xtest-many-klibcs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-many-klibcs b/test-many-klibcs
index c396495..5ee3f84 100755
--- a/test-many-klibcs
+++ b/test-many-klibcs
@@ -190,10 +190,10 @@ process() {
echo "I: Architecture $arch/$tools-$toolsarch: begin"
if clean && build_$tools && run_tests; then
echo "I: Architecture $arch/$tools-$toolsarch: pass"
+ clean || true
else
echo "E: Architecture $arch/$tools-$toolsarch: fail"
fi
- clean || true
}
echo "I: $0 started at $(date)"