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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py

Issue 1902423008: Delete chromium valgrind bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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 | « scripts/slave/gatekeeper.json ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
index ca30176f3a1ca9756f481abddc4a70d7fea8ba04..8c78cda9d121450be7308428fee3f9f4b8d78ac3 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
@@ -110,84 +110,5 @@ SPEC = {
},
'enable_swarming': True,
},
- 'Chromium Linux Builder (valgrind)': {
- 'compile_targets': [
- 'base_unittests',
- 'components_unittests',
- 'content_unittests',
- 'crypto_unittests',
- 'device_unittests',
- 'display_unittests',
- 'extensions_unittests',
- 'gcm_unit_tests',
- 'gpu_unittests',
- 'ipc_tests',
- 'jingle_unittests',
- 'media_unittests',
- 'midi_unittests',
- 'net_unittests',
- 'ppapi_unittests',
- 'printing_unittests',
- 'remoting_unittests',
- 'sandbox_linux_unittests',
- 'sql_unittests',
- 'sync_unit_tests',
- 'ui_base_unittests',
- 'unit_tests',
- 'url_unittests',
- ],
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': ['mb', 'memcheck'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'testing': {
- 'platform': 'linux',
- },
- },
},
}
-
-def BaseSpec(bot_type, chromium_apply_config, gclient_apply_config):
- spec = {
- 'bot_type': bot_type,
- 'chromium_apply_config' : chromium_apply_config,
- 'chromium_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'gclient_config': 'chromium',
- 'gclient_apply_config': gclient_apply_config,
- 'testing': {
- 'platform': 'linux',
- },
- }
- return spec
-
-def TestSpec(parent_builder):
- spec = BaseSpec(
- bot_type='tester',
- chromium_apply_config=['mb'],
- gclient_apply_config=['valgrind'])
-
- spec['parent_buildername'] = parent_builder
- spec['test_generators'] = [
- steps.generate_gtest,
- steps.generate_script,
- steps.generate_isolated_script,
- ]
- return spec
-
-def AddMemTestSpec(name, tool):
- if tool == 'valgrind':
- SPEC['builders'][name] = TestSpec('Chromium Linux Builder (valgrind)')
-
-AddMemTestSpec('Linux Tests (valgrind)(1)', 'valgrind')
-AddMemTestSpec('Linux Tests (valgrind)(2)', 'valgrind')
-AddMemTestSpec('Linux Tests (valgrind)(3)', 'valgrind')
-AddMemTestSpec('Linux Tests (valgrind)(4)', 'valgrind')
-AddMemTestSpec('Linux Tests (valgrind)(5)', 'valgrind')
« no previous file with comments | « scripts/slave/gatekeeper.json ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698