Chromium Code Reviews| Index: webrtc/build/android/test_runner.py |
| diff --git a/webrtc/build/android/test_runner.py b/webrtc/build/android/test_runner.py |
| index fd8ca2fc0792032630f11358204d8917cb3eea16..476bd8342c6b2e65a7bd2e0a7c251c63e8d33754 100755 |
| --- a/webrtc/build/android/test_runner.py |
| +++ b/webrtc/build/android/test_runner.py |
| @@ -27,6 +27,7 @@ sys.path.insert(0, CHROMIUM_BUILD_ANDROID_DIR) |
| import test_runner # pylint: disable=W0406 |
| from pylib.gtest import gtest_test_instance |
| +from pylib.instrumentation import instrumentation_test_instance |
|
perkj_webrtc
2016/06/08 08:48:10
what is this doing?
sakal
2016/06/08 09:20:14
The test runner tries to run the tests defined in
sakal
2016/06/08 11:12:30
Changing the name of the CameraVideoCapturerTest c
|
| def main(): |
| # Set our own paths to the .isolate files. |
| @@ -55,6 +56,8 @@ def main(): |
| 'webrtc_nonparallel_tests': 'webrtc/webrtc_nonparallel_tests.isolate', |
| 'webrtc_perf_tests': 'webrtc/webrtc_perf_tests.isolate', |
| }) |
| + instrumentation_test_instance._EXCLUDE_UNLESS_REQUESTED_ANNOTATIONS += [ |
| + 'Suppress'] |
| # Override environment variable to make it possible for the scripts to find |
| # the root directory (our symlinking of the Chromium build toolchain would |
| # otherwise make them fail to do so). |