@@ -3138,6 +3138,7 @@ class PrettyUnitTestResultPrinter : public TestEventListener {
3138
3138
3139
3139
private:
3140
3140
static void PrintFailedTests (const UnitTest& unit_test);
3141
+ static void PrintFailedTestSuites (const UnitTest& unit_test);
3141
3142
static void PrintSkippedTests (const UnitTest& unit_test);
3142
3143
};
3143
3144
@@ -3290,9 +3291,8 @@ void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart(
3290
3291
// Internal helper for printing the list of failed tests.
3291
3292
void PrettyUnitTestResultPrinter::PrintFailedTests (const UnitTest& unit_test) {
3292
3293
const int failed_test_count = unit_test.failed_test_count ();
3293
- if (failed_test_count == 0 ) {
3294
- return ;
3295
- }
3294
+ ColoredPrintf (COLOR_RED, " [ FAILED ] " );
3295
+ printf (" %s, listed below:\n " , FormatTestCount (failed_test_count).c_str ());
3296
3296
3297
3297
for (int i = 0 ; i < unit_test.total_test_suite_count (); ++i) {
3298
3298
const TestSuite& test_suite = *unit_test.GetTestSuite (i);
@@ -3310,6 +3310,30 @@ void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) {
3310
3310
printf (" \n " );
3311
3311
}
3312
3312
}
3313
+ printf (" \n %2d FAILED %s\n " , failed_test_count,
3314
+ failed_test_count == 1 ? " TEST" : " TESTS" );
3315
+ }
3316
+
3317
+ // Internal helper for printing the list of test suite failures not covered by
3318
+ // PrintFailedTests.
3319
+ void PrettyUnitTestResultPrinter::PrintFailedTestSuites (
3320
+ const UnitTest& unit_test) {
3321
+ int suite_failure_count = 0 ;
3322
+ for (int i = 0 ; i < unit_test.total_test_suite_count (); ++i) {
3323
+ const TestSuite& test_suite = *unit_test.GetTestSuite (i);
3324
+ if (!test_suite.should_run ()) {
3325
+ continue ;
3326
+ }
3327
+ if (test_suite.ad_hoc_test_result ().Failed ()) {
3328
+ ColoredPrintf (COLOR_RED, " [ FAILED ] " );
3329
+ printf (" %s: SetUpTestSuite or TearDownTestSuite\n " , test_suite.name ());
3330
+ ++suite_failure_count;
3331
+ }
3332
+ }
3333
+ if (suite_failure_count > 0 ) {
3334
+ printf (" \n %2d FAILED TEST %s\n " , suite_failure_count,
3335
+ suite_failure_count == 1 ? " SUITE" : " SUITES" );
3336
+ }
3313
3337
}
3314
3338
3315
3339
// Internal helper for printing the list of skipped tests.
@@ -3357,19 +3381,14 @@ void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,
3357
3381
PrintSkippedTests (unit_test);
3358
3382
}
3359
3383
3360
- int num_failures = unit_test.failed_test_count ();
3361
3384
if (!unit_test.Passed ()) {
3362
- const int failed_test_count = unit_test.failed_test_count ();
3363
- ColoredPrintf (COLOR_RED, " [ FAILED ] " );
3364
- printf (" %s, listed below:\n " , FormatTestCount (failed_test_count).c_str ());
3365
3385
PrintFailedTests (unit_test);
3366
- printf (" \n %2d FAILED %s\n " , num_failures,
3367
- num_failures == 1 ? " TEST" : " TESTS" );
3386
+ PrintFailedTestSuites (unit_test);
3368
3387
}
3369
3388
3370
3389
int num_disabled = unit_test.reportable_disabled_test_count ();
3371
3390
if (num_disabled && !GTEST_FLAG (also_run_disabled_tests)) {
3372
- if (!num_failures ) {
3391
+ if (unit_test. Passed () ) {
3373
3392
printf (" \n " ); // Add a spacer if no FAILURE banner is displayed.
3374
3393
}
3375
3394
ColoredPrintf (COLOR_YELLOW,
0 commit comments