Changeset 80237 in webkit


Ignore:
Timestamp:
Mar 3, 2011 6:31:36 AM (13 years ago)
Author:
Adam Roben
Message:

Make Windows 7 Release (Tests) a core builder

We can probably make Windows XP Debug (Tests) a core builder, too, but we should probably
give it a few more days of greenness first.

Fixes <http://webkit.org/b/55665> Windows 7 Release (Tests) should be a core builder

Reviewed by Andreas Kling.

  • Scripts/webkitpy/common/net/buildbot/buildbot.py:

(BuildBot): Added a regexp to match Windows 7 Release (Tests).

  • Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:

(BuildBotTest): Updated the list of builders to match the current list on build.webkit.org.
Updated the core regexps to match the buildbot module. Updated the expected results to match
the current set of core builders.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r80233 r80237  
     12011-03-03  Adam Roben  <aroben@apple.com>
     2
     3        Make Windows 7 Release (Tests) a core builder
     4
     5        We can probably make Windows XP Debug (Tests) a core builder, too, but we should probably
     6        give it a few more days of greenness first.
     7
     8        Fixes <http://webkit.org/b/55665> Windows 7 Release (Tests) should be a core builder
     9
     10        Reviewed by Andreas Kling.
     11
     12        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
     13        (BuildBot): Added a regexp to match Windows 7 Release (Tests).
     14
     15        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
     16        (BuildBotTest): Updated the list of builders to match the current list on build.webkit.org.
     17        Updated the core regexps to match the buildbot module. Updated the expected results to match
     18        the current set of core builders.
     19
    1202011-03-03  Benjamin Poulain  <benjamin.poulain@nokia.com>
    221
  • trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot.py

    r79730 r80237  
    271271            "Leopard.*Release",
    272272            "Windows.*Build",
     273            "Windows.*Release.*\(Test",
    273274            "WinCE",
    274275            "EFL",
  • trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py

    r79730 r80237  
    232232            {'name': u'SnowLeopard Intel Leaks', },
    233233            {'name': u'Windows Release (Build)', },
    234             {'name': u'Windows Release (Tests)', },
     234            {'name': u'Windows 7 Release (Tests)', },
    235235            {'name': u'Windows Debug (Build)', },
    236             {'name': u'Windows Debug (Tests)', },
     236            {'name': u'Windows XP Debug (Tests)', },
     237            {'name': u'Windows 7 Release (WebKit2 Tests)', },
    237238            {'name': u'GTK Linux 32-bit Release', },
    238239            {'name': u'GTK Linux 32-bit Debug', },
    239240            {'name': u'GTK Linux 64-bit Debug', },
    240             {'name': u'GTK Linux 64-bit Release', },
    241241            {'name': u'Qt Linux Release', },
    242242            {'name': u'Qt Linux Release minimal', },
     
    244244            {'name': u'Qt Windows 32-bit Release', },
    245245            {'name': u'Qt Windows 32-bit Debug', },
     246            {'name': u'Chromium Win Release', },
     247            {'name': u'Chromium Mac Release', },
    246248            {'name': u'Chromium Linux Release', },
    247             {'name': u'Chromium Mac Release', },
    248             {'name': u'Chromium Win Release', },
     249            {'name': u'Chromium Win Release (Tests)', },
     250            {'name': u'Chromium Mac Release (Tests)', },
    249251            {'name': u'Chromium Linux Release (Tests)', },
    250             {'name': u'Chromium Mac Release (Tests)', },
    251             {'name': u'Chromium Win Release (Tests)', },
    252252            {'name': u'New run-webkit-tests', },
     253            {'name': u'WinCairo Debug (Build)', },
     254            {'name': u'WinCE Release (Build)', },
     255            {'name': u'EFL Linux Release (Build)', },
    253256        ]
    254257        name_regexps = [
     
    258261            "Leopard.*Release",
    259262            "Windows.*Build",
     263            "Windows.*Release.*\(Test",
    260264            "WinCE",
    261265            "EFL",
     
    272276            {'name': u'SnowLeopard Intel Release (WebKit2 Tests)', },
    273277            {'name': u'Windows Release (Build)', },
     278            {'name': u'Windows 7 Release (Tests)', },
    274279            {'name': u'Windows Debug (Build)', },
    275280            {'name': u'GTK Linux 32-bit Release', },
     
    281286            {'name': u'Qt Windows 32-bit Release', },
    282287            {'name': u'Qt Windows 32-bit Debug', },
     288            {'name': u'Chromium Win Release', },
     289            {'name': u'Chromium Mac Release', },
    283290            {'name': u'Chromium Linux Release', },
    284             {'name': u'Chromium Mac Release', },
    285             {'name': u'Chromium Win Release', },
     291            {'name': u'WinCE Release (Build)', },
     292            {'name': u'EFL Linux Release (Build)', },
    286293        ]
    287294
Note: See TracChangeset for help on using the changeset viewer.