Changeset 64491 in webkit


Ignore:
Timestamp:
Aug 2, 2010 2:03:38 PM (14 years ago)
Author:
jhoneycutt@apple.com
Message:

Add a Skipped list on Windows, and have run-webkit-tests respect it.

Part of <rdar://problem/8233237> Fill WebKit2 Windows skipped list so
there are zero tests failing
https://bugs.webkit.org/show_bug.cgi?id=43374

Reviewed by Adam Roben.

WebKitTools:

  • Scripts/old-run-webkit-tests:

If using WebKitTestRunner and Apple Windows WebKit, set the platform to
win-wk2. When building the result hierarchy, if the platform is win-wk2,
add it first to the list of platforms.

LayoutTests:

  • platform/win-wk2/Skipped: Copied from LayoutTests/platform/mac-wk2/Skipped.

All platform/mac tests removed.

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64489 r64491  
     12010-07-29  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        Add a Skipped list on Windows, and have run-webkit-tests respect it.
     4
     5        Part of <rdar://problem/8233237> Fill WebKit2 Windows skipped list so
     6        there are zero tests failing
     7        https://bugs.webkit.org/show_bug.cgi?id=43374
     8
     9        Reviewed by Adam Roben.
     10
     11        * platform/win-wk2/Skipped: Copied from LayoutTests/platform/mac-wk2/Skipped.
     12        All platform/mac tests removed.
     13
    1142010-07-20  Ojan Vafai  <ojan@chromium.org>
    215
  • trunk/WebKitTools/ChangeLog

    r64485 r64491  
     12010-07-29  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        Add a Skipped list on Windows, and have run-webkit-tests respect it.
     4
     5        Part of <rdar://problem/8233237> Fill WebKit2 Windows skipped list so
     6        there are zero tests failing
     7        https://bugs.webkit.org/show_bug.cgi?id=43374
     8
     9        Reviewed by Adam Roben.
     10
     11        * Scripts/old-run-webkit-tests:
     12        If using WebKitTestRunner and Apple Windows WebKit, set the platform to
     13        win-wk2. When building the result hierarchy, if the platform is win-wk2,
     14        add it first to the list of platforms.
     15
    1162010-08-02  Darin Adler  <darin@apple.com>
    217
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r64123 r64491  
    355355        $realPlatform = $platform;
    356356        $platform = "mac-wk2";
     357    } elsif (isAppleWinWebKit()) {
     358        $realPlatform = $platform;
     359        $platform = "win-wk2";
    357360    }
    358361}
     
    18961899    if ($isMac || $isWin) {
    18971900        my $effectivePlatform = $platform;
    1898         if ($platform eq "mac-wk2") {
    1899             push @platforms, "mac-wk2";
     1901        if ($platform eq "mac-wk2" || $platform eq "win-wk2") {
     1902            push @platforms, $platform;
    19001903            $effectivePlatform = $realPlatform;
    19011904        }
Note: See TracChangeset for help on using the changeset viewer.