Revision: 25246
Author: [email protected]
Date: Mon Nov 10 14:17:50 2014 UTC
Log: Fix serialization of expected outcomes in test driver.
The outcomes are saved as a set and need to be converted into
a list to be json-serializable.
[email protected]
Review URL: https://codereview.chromium.org/710073002
https://code.google.com/p/v8/source/detail?r=25246
Modified:
/branches/bleeding_edge/tools/testrunner/local/progress.py
=======================================
--- /branches/bleeding_edge/tools/testrunner/local/progress.py Mon Nov 10
10:26:20 2014 UTC
+++ /branches/bleeding_edge/tools/testrunner/local/progress.py Mon Nov 10
14:17:50 2014 UTC
@@ -333,7 +333,7 @@
"stderr": test.output.stderr,
"exit_code": test.output.exit_code,
"result": test.suite.GetOutcome(test),
- "expected": test.outcomes or ["PASS"],
+ "expected": list(test.outcomes) or ["PASS"],
})
--
--
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.