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

Unified Diff: build/android/pylib/gtest/test_package.py

Issue 441783002: [Android] Update gtest test list parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit errors. Created 6 years, 4 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 | « build/android/PRESUBMIT.py ('k') | build/android/pylib/gtest/test_package_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/gtest/test_package.py
diff --git a/build/android/pylib/gtest/test_package.py b/build/android/pylib/gtest/test_package.py
index 4281475db005ddbda4f6bbb3648ea494ed3d1f5b..fcc53b7b092d401e74cf7b02958fa072fa17cf23 100644
--- a/build/android/pylib/gtest/test_package.py
+++ b/build/android/pylib/gtest/test_package.py
@@ -96,6 +96,6 @@ class TestPackage(object):
continue
if 'YOU HAVE' in test:
break
- test_name = test[2:]
+ test_name = test.split(None, 1)[0]
ret += [current + test_name]
return ret
« no previous file with comments | « build/android/PRESUBMIT.py ('k') | build/android/pylib/gtest/test_package_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698