Changeset 141341 in webkit
- Timestamp:
- Jan 30, 2013, 4:49:05 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r141337 r141341 1 2013-01-30 Roger Fong <roger_fong@apple.com> 2 3 Modify runtests.py script so that --skip-failing-tests option is not added when platform is cygwin. 4 5 Rubberstamped by Timothy Horton. 6 7 * Scripts/webkitpy/tool/steps/runtests.py: 8 (RunTests.run): 9 1 10 2013-01-30 Sheriff Bot <webkit.review.bot@gmail.com> 2 11 -
trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py
r138826 r141341 28 28 29 29 import logging 30 30 import os 31 import platform 32 import sys 31 33 from webkitpy.tool.steps.abstractstep import AbstractStep 32 34 from webkitpy.tool.steps.options import Options … … 78 80 _log.info("Error running webkit_unit_tests: %s" % e.message_with_output()) 79 81 82 80 83 _log.info("Running run-webkit-tests") 81 84 args = self._tool.deprecated_port().run_webkit_tests_command() … … 84 87 "--no-new-test-results", 85 88 "--no-show-results", 86 "--skip-failing-tests",87 89 "--exit-after-n-failures=%s" % self.NON_INTERACTIVE_FAILURE_LIMIT_COUNT, 88 90 "--quiet", 89 91 ]) 90 92 93 if sys.platform != "cygwin": 94 args.append("--skip-failing-test") 91 95 if self._options.quiet: 92 96 args.append("--quiet") 97 93 98 self._tool.executive.run_and_throw_if_fail(args, cwd=self._tool.scm().checkout_root) 99
Note:
See TracChangeset
for help on using the changeset viewer.