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

Side by Side Diff: masters/master.chromium.webkit/master_mac_webkit_pinned_cfg.py

Issue 9138042: Adds a 'webkit_lint' test step to the bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: fix script Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Webkit test builders using the Skia graphics library. 5 # Webkit test builders using the Skia graphics library.
6 6
7 from master import master_config 7 from master import master_config
8 from master.factory import chromium_factory 8 from master.factory import chromium_factory
9 9
10 defaults = {} 10 defaults = {}
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 })) 58 }))
59 59
60 # 60 #
61 # Mac Rel Webkit testers 61 # Mac Rel Webkit testers
62 # 62 #
63 B('Webkit Mac10.6 (deps)', 'f_webkit_rel_tests', auto_reboot=True, 63 B('Webkit Mac10.6 (deps)', 'f_webkit_rel_tests', auto_reboot=True,
64 scheduler=rel_dep_scheduler) 64 scheduler=rel_dep_scheduler)
65 F('f_webkit_rel_tests', mac().ChromiumFactory( 65 F('f_webkit_rel_tests', mac().ChromiumFactory(
66 slave_type='Tester', 66 slave_type='Tester',
67 build_url=rel_archive, 67 build_url=rel_archive,
68 tests=['test_shell', 'webkit', 'webkit_gpu', 'webkit_unit'], 68 tests=['test_shell', 'webkit_lint', 'webkit', 'webkit_gpu', 'webkit_unit'],
69 factory_properties={ 69 factory_properties={
70 'archive_webkit_results': True, 70 'archive_webkit_results': True,
71 'layout_test_platform': 'chromium-mac', 71 'layout_test_platform': 'chromium-mac',
72 'test_results_server': 'test-results.appspot.com', 72 'test_results_server': 'test-results.appspot.com',
73 })) 73 }))
74 74
75 ################################################################################ 75 ################################################################################
76 ## 76 ##
77 ################################################################################ 77 ################################################################################
78 78
79 def Update(config, active_master, c): 79 def Update(config, active_master, c):
80 return helper.Update(c) 80 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698