Changeset 62789 in webkit


Ignore:
Timestamp:
Jul 8, 2010 8:04:21 AM (14 years ago)
Author:
Adam Roben
Message:

Make Windows stop running tests from platform/mac

r62742 made a change (at my suggestion!) that caused us to start
looking for tests in platform/mac, rather than just looking for
expected results in platform/mac. This patch just undoes that part of
r62742.

Fixes <http://webkit.org/b/41855> REGRESSION (r62742): Windows runs
tests from platform/mac, but shouldn't

Reviewed by Antti Koivisto and Anders Carlsson.

  • Scripts/old-run-webkit-tests:

(top level): Removed "mac-snowleopard" and "mac" from @winPlatforms,
so we won't look in those directories for tests to run.
(expectedDirectoryForTest): Added back code from pre-r62742 to look in
platform/mac-snowleopard and platform/mac for expected results.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r62785 r62789  
     12010-07-08  Adam Roben  <aroben@apple.com>
     2
     3        Make Windows stop running tests from platform/mac
     4
     5        r62742 made a change (at my suggestion!) that caused us to start
     6        looking for tests in platform/mac, rather than just looking for
     7        expected results in platform/mac. This patch just undoes that part of
     8        r62742.
     9
     10        Fixes <http://webkit.org/b/41855> REGRESSION (r62742): Windows runs
     11        tests from platform/mac, but shouldn't
     12
     13        Reviewed by Antti Koivisto and Anders Carlsson.
     14
     15        * Scripts/old-run-webkit-tests:
     16        (top level): Removed "mac-snowleopard" and "mac" from @winPlatforms,
     17        so we won't look in those directories for tests to run.
     18        (expectedDirectoryForTest): Added back code from pre-r62742 to look in
     19        platform/mac-snowleopard and platform/mac for expected results.
     20
    1212010-07-08  Antonio Gomes  <tonikitoo@webkit.org>
    222
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r62742 r62789  
    186186
    187187my @macPlatforms = ("mac-tiger", "mac-leopard", "mac-snowleopard", "mac");
    188 
    189 # When running Windows tests, if no results are found in platform/win (or any of the specific
    190 # directories for versions of Windows), then we also try mac-snowleopard and mac.
    191 my @winPlatforms = ("win-xp", "win-vista", "win-7", "win", "mac-snowleopard", "mac");
     188my @winPlatforms = ("win-xp", "win-vista", "win-7", "win");
    192189
    193190if (isAppleMacWebKit()) {
     
    15641561
    15651562    my @directories = @platformResultHierarchy;
     1563    push @directories, map { catdir($platformBaseDirectory, $_) } qw(mac-snowleopard mac) if isCygwin();
    15661564    push @directories, $expectedDirectory;
    15671565
Note: See TracChangeset for help on using the changeset viewer.