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

Unified Diff: masters/master.client.webrtc/master_linux_cfg.py

Issue 17153009: Add Large Tests bots for WebRTC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Restored rebooting only for Win machines Created 7 years, 5 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
« no previous file with comments | « no previous file | masters/master.client.webrtc/master_mac_cfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.client.webrtc/master_linux_cfg.py
diff --git a/masters/master.client.webrtc/master_linux_cfg.py b/masters/master.client.webrtc/master_linux_cfg.py
index 56dfe540eb793ba89c9852e82a2ea565ce472650..d7fca71d9b68045c6ec1008c6c3d2da1649479cf 100644
--- a/masters/master.client.webrtc/master_linux_cfg.py
+++ b/masters/master.client.webrtc/master_linux_cfg.py
@@ -38,6 +38,15 @@ tests = [
'voice_engine_unittests',
]
+baremetal_tests = [
+ 'audio_e2e_test',
+ 'audioproc_perf',
+ 'isac_fixed_perf',
+ 'video_capture_integrationtests',
+ 'vie_auto_test',
+ 'voe_auto_test',
+]
+
ninja_options = ['--build-tool=ninja']
defaults['category'] = 'linux'
@@ -48,6 +57,7 @@ F('linux32_debug_factory', linux().WebRTCFactory(
options=ninja_options,
tests=tests,
factory_properties={'gclient_env': {'GYP_DEFINES': 'target_arch=ia32'}}))
+
B('Linux32 Release', 'linux32_release_factory', scheduler=scheduler)
F('linux32_release_factory', linux().WebRTCFactory(
target='Release',
@@ -60,6 +70,7 @@ F('linux64_debug_factory', linux().WebRTCFactory(
target='Debug',
options=ninja_options,
tests=tests))
+
B('Linux64 Release', 'linux64_release_factory', scheduler=scheduler)
F('linux64_release_factory', linux().WebRTCFactory(
target='Release',
@@ -77,7 +88,7 @@ B('Linux Memcheck', 'linux_memcheck_factory', scheduler=scheduler)
F('linux_memcheck_factory', linux().WebRTCFactory(
target='Release',
options=ninja_options,
- tests=tests,
+ tests=['memcheck_' + test for test in tests],
factory_properties={'needs_valgrind': True,
'gclient_env':
{'GYP_DEFINES': 'build_for_tool=memcheck'}}))
@@ -85,7 +96,7 @@ B('Linux Tsan', 'linux_tsan_factory', scheduler=scheduler)
F('linux_tsan_factory', linux().WebRTCFactory(
target='Release',
options=ninja_options,
- tests=tests,
+ tests=['tsan_' + test for test in tests],
factory_properties={'needs_valgrind': True,
'gclient_env':
{'GYP_DEFINES': 'build_for_tool=tsan'}}))
@@ -99,6 +110,27 @@ F('linux_asan_factory', linux().WebRTCFactory(
{'GYP_DEFINES': ('asan=1 release_extra_cflags=-g '
' linux_use_tcmalloc=0 ')}}))
+B('Linux64 Release [large tests]', 'linux_largetests_factory',
+ scheduler=scheduler)
+F('linux_largetests_factory', linux().WebRTCFactory(
+ target='Release',
+ options=ninja_options,
+ tests=baremetal_tests,
+ factory_properties={
+ 'show_perf_results': True,
+ 'expectations': True,
+ 'perf_id': 'webrtc-linux-large-tests',
+ 'perf_measuring_tests': ['audio_e2e_test',
+ 'audioproc_perf',
+ 'isac_fixed_perf',
+ 'vie_auto_test'],
+ 'custom_cmd_line_tests': ['audio_e2e_test',
+ 'audioproc_perf',
+ 'isac_fixed_perf',
+ 'vie_auto_test',
+ 'voe_auto_test'],
+ }))
+
# Android.
B('Android NDK', 'android_ndk_factory', scheduler=scheduler)
F('android_ndk_factory', android().ChromiumAnnotationFactory(
« no previous file with comments | « no previous file | masters/master.client.webrtc/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698