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

Unified Diff: webrtc/build/android/test_runner.py

Issue 2024843002: Refactor VideoCapturerAndroid tests in WebRTC. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changes according to magjed's comments #2 Created 4 years, 7 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
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).

Powered by Google App Engine
This is Rietveld 408576698