Changeset 86445 in webkit


Ignore:
Timestamp:
May 13, 2011 10:36:57 AM (13 years ago)
Author:
Adam Roben
Message:

Exclude the Leopard NRWT bot from the core builder set

Fixes <http://webkit.org/b/60392> Leopard Intel Release (NRWT) shouldn't be a core builder

Reviewed by Darin Adler.

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

(BuildBot.init): Tighten up the Leopard regexp to only allow the non-NRWT Leopard bots
in the core builder set.

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

(BuildBotTest.test_builder_name_regexps): Updated to match the current set of builders and
regexps.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r86444 r86445  
     12011-05-13  Adam Roben  <aroben@apple.com>
     2
     3        Exclude the Leopard NRWT bot from the core builder set
     4
     5        Fixes <http://webkit.org/b/60392> Leopard Intel Release (NRWT) shouldn't be a core builder
     6
     7        Reviewed by Darin Adler.
     8
     9        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
     10        (BuildBot.__init__): Tighten up the Leopard regexp to only allow the non-NRWT Leopard bots
     11        in the core builder set.
     12
     13        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
     14        (BuildBotTest.test_builder_name_regexps): Updated to match the current set of builders and
     15        regexps.
     16
    1172011-05-13  Adam Roben  <aroben@apple.com>
    218
  • trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot.py

    r85821 r86445  
    293293            "SnowLeopard.*\(Test",
    294294            "SnowLeopard.*\(WebKit2 Test",
    295             "Leopard.*",
     295            "Leopard.*\((?:Build|Test)",
    296296            "Windows.*Build",
    297297            "Windows.*\(Test",
  • trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py

    r85821 r86445  
    266266            {'name': u'Chromium Mac Release (Tests)', },
    267267            {'name': u'Chromium Linux Release (Tests)', },
     268            {'name': u'Leopard Intel Release (NRWT)', },
     269            {'name': u'SnowLeopard Intel Release (NRWT)', },
    268270            {'name': u'New run-webkit-tests', },
    269271            {'name': u'WinCairo Debug (Build)', },
     
    275277            "SnowLeopard.*\(Test",
    276278            "SnowLeopard.*\(WebKit2 Test",
    277             "Leopard.*",
     279            "Leopard.*\((?:Build|Test)",
    278280            "Windows.*Build",
    279281            "Windows.*\(Test",
Note: See TracChangeset for help on using the changeset viewer.