Changeset 51249 in webkit


Ignore:
Timestamp:
Nov 20, 2009 11:31:39 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-11-20 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Support Qt port in build-queue
https://bugs.webkit.org/show_bug.cgi?id=31733

  • Scripts/bugzilla-tool:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51248 r51249  
     12009-11-20  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Support Qt port in build-queue
     6        https://bugs.webkit.org/show_bug.cgi?id=31733
     7
     8        * Scripts/bugzilla-tool:
     9
    1102009-11-20  Adam Barth  <abarth@webkit.org>
    211
  • trunk/WebKitTools/Scripts/bugzilla-tool

    r51248 r51249  
    633633
    634634class AbstractQueue(Command, WorkQueueDelegate):
    635     def __init__(self):
    636         options = [
     635    def __init__(self, options=[]):
     636        options += [
    637637            make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Do not ask the user for confirmation before running the queue.  Dangerous!"),
    638638            make_option("--status-host", action="store", type="string", dest="status_host", default=StatusBot.default_host, help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."),
     
    719719
    720720class AbstractTryQueue(AbstractQueue):
    721     def __init__(self):
    722         AbstractQueue.__init__(self)
     721    def __init__(self, options=[]):
     722        AbstractQueue.__init__(self, options)
    723723
    724724    def status_host(self):
     
    759759    name = "build-queue"
    760760    def __init__(self):
    761         AbstractTryQueue.__init__(self)
     761        options = WebKitPort.port_options()
     762        AbstractTryQueue.__init__(self, options)
    762763
    763764    def should_proceed_with_work_item(self, patch):
Note: See TracChangeset for help on using the changeset viewer.