From 95d706bdb8338538e0f96f7039c17465b9e4fe54 Mon Sep 17 00:00:00 2001 From: rfm Date: Wed, 31 Jul 2024 10:55:54 +0100 Subject: [PATCH] Fixup for failure to detect failed builds --- ChangeLog | 5 +++++ TestFramework/gnustep-tests.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e90af3a0..ff32f13f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-07-31 Richard Frith-Macdonald + + * TestFramework/gnustep-tests.in: Fix 'Failed build' detection in + Summary.sh by recording build failures in tests.sum and test.log + 2024-05-31 Yavor Doganov * GNUmakefile.in (install): Remove $(srcdir) from GNUstep-reset.sh diff --git a/TestFramework/gnustep-tests.in b/TestFramework/gnustep-tests.in index 11b79088..8a712cbf 100755 --- a/TestFramework/gnustep-tests.in +++ b/TestFramework/gnustep-tests.in @@ -399,7 +399,7 @@ build_test () if test $? != 0 then rm -f ./obj/$TESTNAME - echo "Failed build: $1" >&2 + echo "Failed build: $1" | tee -a $GSTESTSUM >> $GSTESTLOG if test "$GSTESTMODE" = "failfast" then return 1