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 |