In run_single_suite() at Framework/Testrun.c the number of succeded/failed test cases is incorrectly counted. At line 889, the logic is inverted:
if (CUE_SUCCESS == result) {
pSuite->uiNumberOfTestsFailed++;
}
else {
pSuite->uiNumberOfTestsSuccess++;
}
Anonymous