| 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 a980d4d4b20dc22c89f891a209162be1e3b780c7..8ff07d552c9c7961987219fbc74a583878bccf42 100644
|
| --- a/build/android/pylib/local/device/local_device_gtest_run.py
|
| +++ b/build/android/pylib/local/device/local_device_gtest_run.py
|
| @@ -91,7 +91,7 @@ def _ExtractTestsFromFilter(gtest_filter):
|
|
|
| if '*' in gtest_filter:
|
| return None
|
| - return patterns
|
| + return [p for p in patterns if p] # Ignore empty entries.
|
|
|
|
|
| class _ApkDelegate(object):
|
|
|