| Index: build/android/pylib/gtest/dispatch.py
|
| diff --git a/build/android/pylib/gtest/dispatch.py b/build/android/pylib/gtest/dispatch.py
|
| index 2d9ab7743d73e33c027583ae4f0a587b59941751..5a82d184590e882e356197b892c4e6ebd1ea1472 100644
|
| --- a/build/android/pylib/gtest/dispatch.py
|
| +++ b/build/android/pylib/gtest/dispatch.py
|
| @@ -155,8 +155,8 @@ def _RunATestSuite(options, suite_name):
|
| constants.GTEST_COMMAND_LINE_FILE)
|
|
|
| # Get tests and split them up based on the number of devices.
|
| - if options.gtest_filter:
|
| - all_tests = [t for t in options.gtest_filter.split(':') if t]
|
| + if options.test_filter:
|
| + all_tests = [t for t in options.test_filter.split(':') if t]
|
| else:
|
| all_tests = GetAllEnabledTests(RunnerFactory, attached_devices)
|
| num_devices = len(attached_devices)
|
|
|