Chromium Code Reviews| 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 WebKit test_expectations.txt file.""" |
|
nsylvain
2012/01/25 20:19:54
80 chars
Dirk Pranke
2012/01/25 22:39:07
Done.
|
| + factory_properties = factory_properties or {} |
|
nsylvain
2012/01/25 20:19:54
i dont think you need this line
Dirk Pranke
2012/01/25 22:39:07
Done.
|
| + cmd = [self._python, self._lint_test_files_tool] |
| + self.AddTestStep(shell.ShellCommand, |
| + test_name='lint_test_files', |
| + 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. |