Changeset 112458 in webkit


Ignore:
Timestamp:
Mar 28, 2012 3:33:48 PM (12 years ago)
Author:
dpranke@chromium.org
Message:

new-run-webkit-tests doesn't log correctly after retrying failures
https://bugs.webkit.org/show_bug.cgi?id=82541

Unreviewed, build fix.

r112189 introduced a regression where we would accidentally
delete the log handler after we retried any failing tests - that
meant that any log messages around uploading the results got
dropped.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._run_tests):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r112456 r112458  
     12012-03-28  Dirk Pranke  <dpranke@chromium.org>
     2
     3        new-run-webkit-tests doesn't log correctly after retrying failures
     4        https://bugs.webkit.org/show_bug.cgi?id=82541
     5
     6        Unreviewed, build fix.
     7
     8        r112189 introduced a regression where we would accidentally
     9        delete the log handler after we retried any failing tests - that
     10        meant that any log messages around uploading the results got
     11        dropped.
     12
     13        * Scripts/webkitpy/layout_tests/controllers/manager.py:
     14        (Manager._run_tests):
     15
    1162012-03-28  Kevin Ollivier  <kevino@theolliviers.com>
    217
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r112189 r112458  
    761761            worker_arguments = worker.WorkerArguments(worker_number, self.results_directory(), self._options)
    762762            worker_connection = manager_connection.start_worker(worker_arguments)
    763             if self._options.child_processes == 1:
     763            if num_workers == 1:
    764764                # FIXME: We need to be able to share a port with the work so
    765765                # that some of the tests can query state on the port; ideally
Note: See TracChangeset for help on using the changeset viewer.