Changeset 70220 in webkit


Ignore:
Timestamp:
Oct 21, 2010 2:53:04 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-10-21 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue should run run-webkit-tests with --no-new-test-results
https://bugs.webkit.org/show_bug.cgi?id=47998

  • Scripts/webkitpy/tool/steps/runtests.py:
  • Scripts/webkitpy/tool/steps/steps_unittest.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70217 r70220  
     12010-10-21  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        commit-queue should run run-webkit-tests with --no-new-test-results
     6        https://bugs.webkit.org/show_bug.cgi?id=47998
     7
     8        * Scripts/webkitpy/tool/steps/runtests.py:
     9        * Scripts/webkitpy/tool/steps/steps_unittest.py:
     10
    1112010-10-21  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
    212
  • trunk/WebKitTools/Scripts/webkitpy/tool/steps/runtests.py

    r69829 r70220  
    5858        args = self._tool.port().run_webkit_tests_command()
    5959        if self._options.non_interactive:
     60            args.append("--no-new-test-results")
    6061            args.append("--no-launch-safari")
    6162            args.append("--exit-after-n-failures=1")
  • trunk/WebKitTools/Scripts/webkitpy/tool/steps/steps_unittest.py

    r69905 r70220  
    8888MOCK run_and_throw_if_fail: ['WebKitTools/Scripts/run-javascriptcore-tests']
    8989Running run-webkit-tests
    90 MOCK run_and_throw_if_fail: ['WebKitTools/Scripts/run-webkit-tests', '--no-launch-safari', '--exit-after-n-failures=1', '--wait-for-httpd', '--ignore-tests', 'compositing,media', '--quiet']
     90MOCK run_and_throw_if_fail: ['WebKitTools/Scripts/run-webkit-tests', '--no-new-test-results', '--no-launch-safari', '--exit-after-n-failures=1', '--wait-for-httpd', '--ignore-tests', 'compositing,media', '--quiet']
    9191"""
    9292        OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
Note: See TracChangeset for help on using the changeset viewer.