1
0
Fork 0

TestSuite: Fix for the summary and return status of the tests.

This commit is contained in:
Edward d'Auvergne 2018-05-07 12:41:22 +02:00
parent 4a38fa7f19
commit 8eb4d76411

View file

@ -63,5 +63,5 @@ int testRunner(const std::string& title, char *subset, bool verbose, bool ctest_
// Return the status of the tests.
CppUnit::TestResultCollector &status = runner.result();
return status.testFailures();
return status.testFailuresTotal();
}