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

Unified Diff: build/android/test_runner.py

Issue 1371243002: [Android] Only remember non-None iteration results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index e756006cb977a47f2559a9645221a3f1075b67f0..db6df24b321e062df5746893c698b76bf7cdbfeb 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -959,9 +959,9 @@ def RunTestsInPlatformMode(args, parser):
else itertools.count())
for _ in repetitions:
iteration_results = test_run.RunTests()
- results.append(iteration_results)
if iteration_results is not None:
+ results.append(iteration_results)
report_results.LogFull(
results=iteration_results,
test_type=test.TestType(),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698