Revision: 22147
Author: [email protected]
Date: Wed Jul 2 09:12:07 2014 UTC
Log: Add information about rerun tests to json output.
BUG=374134
LOG=n
[email protected]
Review URL: https://codereview.chromium.org/364793004
http://code.google.com/p/v8/source/detail?r=22147
Modified:
/branches/bleeding_edge/tools/testrunner/local/progress.py
=======================================
--- /branches/bleeding_edge/tools/testrunner/local/progress.py Mon May 19
08:36:53 2014 UTC
+++ /branches/bleeding_edge/tools/testrunner/local/progress.py Wed Jul 2
09:12:07 2014 UTC
@@ -318,13 +318,16 @@
def HasRun(self, test, has_unexpected_output):
self.progress_indicator.HasRun(test, has_unexpected_output)
- if not has_unexpected_output:
+ if test.run == 1 and not has_unexpected_output:
+ # Omit tests that pass on the first run, but collect output of tests
+ # that pass when rerun.
return
self.results.append({
"name": test.GetLabel(),
"flags": test.flags,
"command": EscapeCommand(self.runner.GetCommand(test)).replace(
ABS_PATH_PREFIX, ""),
+ "run": test.run,
"stdout": test.output.stdout,
"stderr": test.output.stderr,
"exit_code": test.output.exit_code,
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.