Changeset 57434 in webkit


Ignore:
Timestamp:
Apr 10, 2010 8:51:59 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-04-10 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix bugs to make new-run-webkit-tests almost run on windows
https://bugs.webkit.org/show_bug.cgi?id=37400

Add an empty test expectations file. I'm not sure whether we'll use
this one or make a common one for each port. However, as written, this
file is requires to run new-run-webkit-tests on Windows.

  • platform/win/test_expectations.txt: Added.

2010-04-10 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix bugs to make new-run-webkit-tests almost run on windows
https://bugs.webkit.org/show_bug.cgi?id=37400

Fix some minor bugs that prevent new-run-webkit-tests from being run on
Windows. I still haven't run it to completion, but I'm getting
further.

  • Scripts/webkitpy/layout_tests/port/factory.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
Location:
trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57428 r57434  
     12010-04-10  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix bugs to make new-run-webkit-tests almost run on windows
     6        https://bugs.webkit.org/show_bug.cgi?id=37400
     7
     8        Add an empty test expectations file.  I'm not sure whether we'll use
     9        this one or make a common one for each port.  However, as written, this
     10        file is requires to run new-run-webkit-tests on Windows.
     11
     12        * platform/win/test_expectations.txt: Added.
     13
    1142010-04-10  Adam Barth  <abarth@webkit.org>
    215
  • trunk/WebKitTools/ChangeLog

    r57433 r57434  
     12010-04-10  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix bugs to make new-run-webkit-tests almost run on windows
     6        https://bugs.webkit.org/show_bug.cgi?id=37400
     7
     8        Fix some minor bugs that prevent new-run-webkit-tests from being run on
     9        Windows.  I still haven't run it to completion, but I'm getting
     10        further.
     11
     12        * Scripts/webkitpy/layout_tests/port/factory.py:
     13        * Scripts/webkitpy/layout_tests/port/webkit.py:
     14
    1152010-04-10  Robert Hogan  <robert@webkit.org>
    216
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/factory.py

    r57425 r57434  
    4040    port_to_use = port_name
    4141    if port_to_use is None:
    42         if sys.platform == 'win32':
     42        if sys.platform == 'win32' or sys.platform == 'cygwin':
    4343            if options and hasattr(options, 'chromium') and options.chromium:
    4444                port_to_use = 'chromium-win'
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/webkit.py

    r57426 r57434  
    243243
    244244    def _skipped_file_paths(self):
    245         return [os.path.join(self._webkit_baseline_path(self._name,
    246                                                             'Skipped'))]
     245        return [os.path.join(self._webkit_baseline_path(self._name),
     246                                                        'Skipped')]
    247247
    248248    def _expectations_from_skipped_files(self):
Note: See TracChangeset for help on using the changeset viewer.