Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2906)

Unified Diff: build/android/test_result.py

Issue 10310046: Detect crashes while running native tests in APK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/android/test_result.py
diff --git a/build/android/test_result.py b/build/android/test_result.py
index dfafca7007fd84c71023419b5bff98c1bafff847..8840371aecdbe519bdaeadb640ce68693b56036b 100644
--- a/build/android/test_result.py
+++ b/build/android/test_result.py
@@ -61,10 +61,11 @@ class TestResults(object):
self.overall_fail = False
@staticmethod
- def FromOkAndFailed(ok, failed, timed_out, overall_fail):
+ def FromOkFailedAndCrashed(ok, failed, crashed, timed_out, overall_fail):
John Grabowski 2012/05/07 19:22:15 That's a lot of arguments. Can you make all caller
nilesh 2012/05/08 01:38:10 Done.
ret = TestResults()
ret.ok = ok
ret.failed = failed
+ ret.crashed = crashed
ret.timed_out = timed_out
ret.overall_fail = overall_fail
return ret

Powered by Google App Engine
This is Rietveld 408576698