Changeset 84377 in webkit


Ignore:
Timestamp:
Apr 20, 2011 9:05:36 AM (13 years ago)
Author:
Adam Roben
Message:

Replace old-run-webkit-tests's win-7 platform with win-7sp0

It was an error that we had a win-7 platform to begin with. Windows 7 was the most recent
version of Windows we cared about, so its results should just go in win. But now that
Windows 7 SP1 exists (and has different results for some tests), we need a place to store
results for Windows 7 without SP1 (and older versions of Windows).

Part of <http://webkit.org/b/56617> Several tests fail on Windows 7 SP1 due to font
differences from Windows 7 "SP0"

Reviewed by David Kilzer.

  • Scripts/old-run-webkit-tests: Replaced win-7 with win-7sp0. Newer versions of Windows 7

will just use "win".

  • Scripts/webkitdirs.pm:

(isWindows7SP0): Added. Replaces isWindows7, because that function had no remaining callers.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r84372 r84377  
     12011-04-20  Adam Roben  <aroben@apple.com>
     2
     3        Replace old-run-webkit-tests's win-7 platform with win-7sp0
     4
     5        It was an error that we had a win-7 platform to begin with. Windows 7 was the most recent
     6        version of Windows we cared about, so its results should just go in win. But now that
     7        Windows 7 SP1 exists (and has different results for some tests), we need a place to store
     8        results for Windows 7 without SP1 (and older versions of Windows).
     9
     10        Part of <http://webkit.org/b/56617> Several tests fail on Windows 7 SP1 due to font
     11        differences from Windows 7 "SP0"
     12
     13        Reviewed by David Kilzer.
     14
     15        * Scripts/old-run-webkit-tests: Replaced win-7 with win-7sp0. Newer versions of Windows 7
     16        will just use "win".
     17
     18        * Scripts/webkitdirs.pm:
     19        (isWindows7SP0): Added. Replaces isWindows7, because that function had no remaining callers.
     20
    1212011-04-20  Adam Roben  <aroben@apple.com>
    222
  • trunk/Tools/Scripts/old-run-webkit-tests

    r84272 r84377  
    209209
    210210my @macPlatforms = ("mac-tiger", "mac-leopard", "mac-snowleopard", "mac");
    211 my @winPlatforms = ("win-xp", "win-vista", "win-7", "win");
     211my @winPlatforms = ("win-xp", "win-vista", "win-7sp0", "win");
    212212
    213213if (isAppleMacWebKit()) {
     
    243243    } elsif (isWindowsVista()) {
    244244        $platform = "win-vista";
    245     } elsif (isWindows7()) {
    246         $platform = "win-7";
     245    } elsif (isWindows7SP0()) {
     246        $platform = "win-7sp0";
    247247    } else {
    248248        $platform = "win";
  • trunk/Tools/Scripts/webkitdirs.pm

    r84372 r84377  
    919919}
    920920
    921 sub isWindows7()
    922 {
    923     return isAnyWindows() && winVersion()->{major} == 6 && winVersion()->{minor} == 1;
     921sub isWindows7SP0()
     922{
     923    return isAnyWindows() && winVersion()->{major} == 6 && winVersion()->{minor} == 1 && winVersion()->{build} == 7600;
    924924}
    925925
Note: See TracChangeset for help on using the changeset viewer.