Changeset 55937 in webkit


Ignore:
Timestamp:
Mar 12, 2010 2:42:19 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

2010-03-12 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Barth.

Fix new-run-webkit-tests --run-singly

This script option is currently broken - the script attempts to
dereference methods and variables that don't exist, which causes
the Chromium Linux valgrind bot to be quite unhappy. This has been
broken since r54449 when I renamed Port.start_test_driver to
Port.start_driver.

https://bugs.webkit.org/show_bug.cgi?id=36042

  • Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r55925 r55937  
     12010-03-12  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix new-run-webkit-tests --run-singly
     6
     7        This script option is currently broken - the script attempts to
     8        dereference methods and variables that don't exist, which causes
     9        the Chromium Linux valgrind bot to be quite unhappy. This has been
     10        broken since r54449 when I renamed Port.start_test_driver to
     11        Port.start_driver.
     12
     13        https://bugs.webkit.org/show_bug.cgi?id=36042
     14
     15        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
     16
    1172010-03-12  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    218
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py

    r55603 r55937  
    150150
    151151    def run(self):
    152         driver = self._port.start_test_driver(self._image_path,
    153             self._shell_args)
     152        test_info = self._test_info
     153        driver = self._port.start_driver(self._image_path, self._shell_args)
    154154        start = time.time()
    155155        crash, timeout, actual_checksum, output, error = \
     
    158158        end = time.time()
    159159        self._test_stats = process_output(self._port,
    160             self._test_info, self._test_types, self._test_args,
     160            test_info, self._test_types, self._test_args,
    161161            self._target, self._output_dir, crash, timeout, end - start,
    162162            actual_checksum, output, error)
Note: See TracChangeset for help on using the changeset viewer.