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

Unified Diff: scripts/master/factory/chromium_commands.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, 11 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: scripts/master/factory/chromium_commands.py
===================================================================
--- scripts/master/factory/chromium_commands.py (revision 118512)
+++ scripts/master/factory/chromium_commands.py (working copy)
@@ -745,6 +745,15 @@
test_command=cmd,
do_step_if=self.TestStepFilter)
+ def AddWebkitLint(self, factory_properties=None):
+ """Adds a step to the factory to lint the test_expectations.txt file."""
+ cmd = [self._python, self._lint_test_files_tool,
+ '--build-dir', self._build_dir, '--target', self._target]
+ self.AddTestStep(shell.ShellCommand,
+ test_name='webkit_lint',
+ test_command=cmd,
+ do_step_if=self.TestStepFilter)
+
def AddWebkitTests(self, gpu, factory_properties=None):
"""Adds a step to the factory to run the WebKit layout tests.
« no previous file with comments | « masters/master.chromium.webkit/master_win_webkit_pinned_cfg.py ('k') | scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698