Commit 23825b12 by Jamie Madill Committed by Commit Bot

Test Runner: Set interrupted to 'false' normally.

The bug here was to output 'interrupted: true' when running in --bot-mode. Instead in normal execution we will output that we were not interrupted. Bug: angleproject:3162 Bug: chromium:1134619 Change-Id: I3842e90466473ff05b0b90bc4660f88606a3c9f6 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2446851Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent c488f0c9
...@@ -1281,7 +1281,7 @@ int TestSuite::run() ...@@ -1281,7 +1281,7 @@ int TestSuite::run()
} }
// Dump combined results. // Dump combined results.
WriteOutputFiles(true, mTestResults, mResultsFile, mHistogramJsonFile, mTestSuiteName.c_str()); WriteOutputFiles(false, mTestResults, mResultsFile, mHistogramJsonFile, mTestSuiteName.c_str());
totalRunTime.stop(); totalRunTime.stop();
printf("Tests completed in %lf seconds\n", totalRunTime.getElapsedTime()); printf("Tests completed in %lf seconds\n", totalRunTime.getElapsedTime());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment