- Bug TW-1296

- TW-1296 make test/run_all exit with non-zero code if a test fail (thanks to
          Jakub Wilk).
This commit is contained in:
Paul Beckingham
2014-04-05 10:39:38 -04:00
parent 325d0d1738
commit 5965a85151
3 changed files with 9 additions and 2 deletions

View File

@@ -37,6 +37,8 @@ Bugs
- TW-1282 incorrect URLs in man task-sync (thanks to Jeremiah Marks). - TW-1282 incorrect URLs in man task-sync (thanks to Jeremiah Marks).
- TW-1288 Added missing locking for task modifications (thanks to Kosta H, - TW-1288 Added missing locking for task modifications (thanks to Kosta H,
Ralph Bean, Adam Coddington). Ralph Bean, Adam Coddington).
- TW-1296 make test/run_all exit with non-zero code if a test fail (thanks to
Jakub Wilk).
- #1511 sync init crashes if client certification file is empty or invalid - #1511 sync init crashes if client certification file is empty or invalid
(thanks to Marton Suranyi). (thanks to Marton Suranyi).
- #1508 Show command highlight configuration (thanks to Nicolas Appriou). - #1508 Show command highlight configuration (thanks to Nicolas Appriou).

View File

@@ -1,5 +1,6 @@
#! /bin/sh #! /bin/sh
rc=0
if [ x"$1" = x"--verbose" ]; if [ x"$1" = x"--verbose" ];
then then
for i in ${TESTBLOB} for i in ${TESTBLOB}
@@ -9,9 +10,10 @@ then
while read LINE while read LINE
do do
echo "$LINE" echo "$LINE"
done < test.log done < test.log || rc=1
rm test.log rm test.log
done done
exit $rc
else else
date > all.log date > all.log
@@ -37,7 +39,7 @@ else
COUNT=`expr $COUNT + 1` COUNT=`expr $COUNT + 1`
fi fi
$i >> all.log 2>&1 $i >> all.log 2>&1 || rc=1
done done
if [ $BAR -eq 1 ]; then if [ $BAR -eq 1 ]; then
@@ -53,4 +55,5 @@ else
printf "Fail: %5d\n" `grep -c '^not' all.log` printf "Fail: %5d\n" `grep -c '^not' all.log`
printf "Skipped: %5d\n" `grep -c '^skip' all.log` printf "Skipped: %5d\n" `grep -c '^skip' all.log`
printf "Runtime: %5d seconds\n" $RUNTIME printf "Runtime: %5d seconds\n" $RUNTIME
exit $rc
fi fi

View File

@@ -28,6 +28,7 @@
#include <iomanip> #include <iomanip>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>
#include <stdlib.h>
#include <test.h> #include <test.h>
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
@@ -84,6 +85,7 @@ UnitTest::~UnitTest ()
<< " skipped. " << " skipped. "
<< std::setprecision (3) << percentPassed << std::setprecision (3) << percentPassed
<< "% passed.\n"; << "% passed.\n";
exit (_failed > 0);
} }
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////