From e77a91d5173a513108a7448868362de060b804a6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 4 Nov 2015 13:17:54 +0100 Subject: [PATCH] all-tests: computing success or failure should hopefully be more robust now --- all-tests | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/all-tests b/all-tests index 5c538542..6cae656d 100755 --- a/all-tests +++ b/all-tests @@ -43,17 +43,16 @@ function all_tests () { echo tests echo ======================================== make PYTHON=$PYTHON all-tests + make_retcod=$! echo ======================================== end=$(date +%s) echo all-tests : end at; date; echo total duration $(($end-$begin)) seconds + return $make_retcod } -# WARNING: the current code for analyzing the output is not quite right -# I've seen cases where the tests session goes very badly - with broken imports for example -# but it's considered OK though -# we mght wish to take the opposite angle : check we have as many OK as expected -# but then the list of default targets should be declared here and not in Makefile -# in any case this is good enough for now +# WARNING +# the current code for analyzing the output is very basic +# this needs to be checked manually for some time all_tests >& $output retcod=$? -- 2.43.0