| 393 | } |
| 394 | |
| 395 | void CBatchTestEventHandler::PrintSummary( FILE * fh ) |
| 396 | { |
| 397 | bool success( mTerminationReason >= 0 ); |
| 398 | const char * reason( GetTerminationReasonString( mTerminationReason ) ); |
| 399 | |
| 400 | fprintf( fh, "\n\nSummary:\n--------\n\n" ); |
| 401 | fprintf( fh, "Termination Reason: [%s] - %s\n", success ? " OK " : "FAIL", reason ); |
| 402 | fprintf( fh, "Display Lists Completed: %d / %d\n", mNumDisplayListsCompleted, MAX_DLS ); |
| 403 | } |
| 404 | |
| 405 | |
| 406 | #endif // DAEDALUS_BATCH_TEST_ENABLED |