Index: masters/master.chromium.memory/master.cfg |
=================================================================== |
--- masters/master.chromium.memory/master.cfg (revision 85872) |
+++ masters/master.chromium.memory/master.cfg (working copy) |
@@ -184,6 +184,7 @@ |
slave_type='Tester', |
build_url=chromium_linux_valgrind_archive, |
tests=['valgrind_base', |
+ 'valgrind_crypto', |
'valgrind_ui_3_of_8', |
'valgrind_ui_4_of_8', |
], |
@@ -227,8 +228,11 @@ |
target='Release', |
slave_type='Tester', |
build_url=chromium_linux_valgrind_archive, |
+ # New tests must first update src/tools/valgrind/chrome_tests.py to |
+ # handle the test name, sans the 'tsan_' prefix. |
Timur Iskhodzhanov
2011/05/20 08:39:11
s/sans/without ?
|
tests=['tsan_app', |
'tsan_base', |
+ 'tsan_crypto', |
'tsan_googleurl', |
'tsan_net', |
'tsan_ipc', |
@@ -271,6 +275,7 @@ |
slave_type='Builder', |
options=['app_unittests', |
'base_unittests', |
+ 'crypto_unittests', |
'googleurl_unittests', |
'ipc_tests', |
'media_unittests', |
@@ -301,12 +306,15 @@ |
'sync_unit_tests', |
'ipc_tests', |
'base_unittests', |
+ 'crypto_unittests', |
'net_unittests', |
'gfx_unittests', |
'unit_tests', |
'test_shell_tests', |
'DumpRenderTree', |
], |
+ # New tests must first update src/tools/heapcheck/chrome_tests.py to |
+ # handle the test name, sans the 'heapcheck_' prefix. |
tests=['heapcheck_googleurl', |
'heapcheck_printing', |
'heapcheck_media', |
@@ -316,6 +324,7 @@ |
'heapcheck_sync', |
'heapcheck_ipc', |
'heapcheck_base', |
+ 'heapcheck_crypto', |
'heapcheck_net', |
'heapcheck_gfx', |
'heapcheck_unit', |
@@ -360,8 +369,12 @@ |
factory_properties={ |
'needs_valgrind' : True, |
'gclient_env': {'GYP_DEFINES' : valgrind_mac_gyp_defines} }, |
+ # New tests must first be added as dependencies to the appropriate target |
Timur Iskhodzhanov
2011/05/20 08:39:11
s/appropriate/chromium_builder_dbg_valgrind_mac/
|
+ # in src/build/all.gyp, then src/tools/valgrind/chrome_tests.py must be |
+ # updated to handle the test name, sans the 'valgrind_' prefix. |
tests=['valgrind_app', |
'valgrind_base', |
+ 'valgrind_crypto', |
'valgrind_googleurl', |
'valgrind_ipc', |
'valgrind_media', |
@@ -380,8 +393,12 @@ |
factory_properties={ |
'needs_valgrind' : True, |
'gclient_env': {'GYP_DEFINES' : valgrind_mac_gyp_defines} }, |
+ # New tests must first be added as dependencies to the appropriate target |
Timur Iskhodzhanov
2011/05/20 08:39:11
s/appropriate/chromium_builder_dbg_valgrind_mac/
|
+ # in src/build/all.gyp, then src/tools/valgrind/chrome_tests.py must be |
+ # updated to handle the test name, sans the 'tsan_' prefix. |
tests=['tsan_app', |
'tsan_base', |
+ 'tsan_crypto', |
'tsan_googleurl', |
'tsan_net', |
'tsan_ipc', |
@@ -454,10 +471,12 @@ |
f_chromium_rel_chromeos_valgrind_tests_2 = F_CR_OS( |
target='Release', |
tests=['valgrind_base', |
+ 'valgrind_crypto', |
'valgrind_ui_3_of_8', |
'valgrind_ui_4_of_8', |
], |
options=['base_unittests', |
+ 'crypto_unittests', |
'ui_tests'], |
factory_properties={ |
'needs_valgrind' : True, |
@@ -503,6 +522,9 @@ |
f_chromium_dbg_win_tsan = F_WIN( |
target='Debug', |
+ # New tests must first be added as dependencies to the appropriate target |
Timur Iskhodzhanov
2011/05/20 08:39:11
s/appropriate/chromium_builder_dbg_tsan_win/
|
+ # in src/build/all.gyp, then src/tools/valgrind/chrome_tests.py must be |
+ # updated to handle the test name, sans the 'tsan_' prefix. |
tests=[ |
'tsan_googleurl', |
'tsan_printing', |
@@ -511,6 +533,7 @@ |
'tsan_media', |
'tsan_ipc', |
'tsan_base', |
+ 'tsan_crypto', |
'tsan_net', |
], |
project='all.sln;chromium_builder_dbg_tsan_win', |