Changeset 141341 in webkit


Ignore:
Timestamp:
Jan 30, 2013, 4:49:05 PM (12 years ago)
Author:
roger_fong@apple.com
Message:

Modify runtests.py script so that --skip-failing-tests option is not added when platform is cygwin.

Rubberstamped by Timothy Horton.

  • Scripts/webkitpy/tool/steps/runtests.py:

(RunTests.run):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r141337 r141341  
     12013-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
    1102013-01-30  Sheriff Bot  <webkit.review.bot@gmail.com>
    211
  • trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py

    r138826 r141341  
    2828
    2929import logging
    30 
     30import os
     31import platform
     32import sys
    3133from webkitpy.tool.steps.abstractstep import AbstractStep
    3234from webkitpy.tool.steps.options import Options
     
    7880                _log.info("Error running webkit_unit_tests: %s" % e.message_with_output())
    7981
     82
    8083        _log.info("Running run-webkit-tests")
    8184        args = self._tool.deprecated_port().run_webkit_tests_command()
     
    8487                "--no-new-test-results",
    8588                "--no-show-results",
    86                 "--skip-failing-tests",
    8789                "--exit-after-n-failures=%s" % self.NON_INTERACTIVE_FAILURE_LIMIT_COUNT,
    8890                "--quiet",
    8991            ])
    9092
     93        if sys.platform != "cygwin":
     94            args.append("--skip-failing-test")
    9195        if self._options.quiet:
    9296            args.append("--quiet")
     97
    9398        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.