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 |