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

Unified Diff: build/android/pylib/local/device/local_device_gtest_run.py

Issue 2561153002: [Android] Handle unrun tests as a list rather than a set. (Closed)
Patch Set: Created 4 years 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/pylib/local/device/local_device_gtest_run.py
diff --git a/build/android/pylib/local/device/local_device_gtest_run.py b/build/android/pylib/local/device/local_device_gtest_run.py
index dc54d900001cf3df1f68f4667c90b4a0451ebf3b..a04b6a2de47ae45e99afa384cb3ce7b0b96716c6 100644
--- a/build/android/pylib/local/device/local_device_gtest_run.py
+++ b/build/android/pylib/local/device/local_device_gtest_run.py
@@ -426,7 +426,7 @@ class LocalDeviceGtestRun(local_device_test_run.LocalDeviceTestRun):
result.SetTombstones(resolved_tombstones)
not_run_tests = set(test).difference(set(r.GetName() for r in results))
- return results, not_run_tests
+ return results, list(not_run_tests)
#override
def TearDown(self):
« 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