Home
last modified time | relevance | path

Searched refs:bot_id (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Tools/QueueStatusServer/handlers/
Dqueuestatus.py55 return "%s-%s" % (status.active_patch_id, status.bot_id)
60 def _fetch_statuses(self, queue, bot_id): argument
63 if bot_id:
64 statuses.filter("bot_id =", bot_id)
67 def _fetch_last_message_matching(self, queue, bot_id, message): argument
70 if bot_id:
71 statuses.filter("bot_id =", bot_id)
75 def _fetch_trailing_days_pass_count(self, queue, bot_id, days): argument
80 if bot_id:
81 statuses.filter("bot_id =", bot_id)
[all …]
Dqueuestatus_unittest.py36 def __init__(self, patch_id, bot_id): argument
38 self.bot_id = bot_id
Dupdatestatus.py52 bot_id = self.request.get("bot_id")
54 queue_status.bot_id = bot_id
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
Dbotinfo.py37 bot_id = self._tool.status_server.bot_id
38 bot_id_string = "Bot: %s " % (bot_id) if bot_id else ""
Dflakytestreporter.py163 bot_id = self._tool.status_server.bot_id or "bot"
167 description = "Failure diff from %s" % bot_id
171 description = "Archive of layout-test-results from %s" % bot_id
Dflakytestreporter_unittest.py103 tool.status_server = MockStatusServer(bot_id="mock-bot-id")
/external/webkit/Tools/Scripts/webkitpy/common/net/
Dstatusserver.py47 def __init__(self, host=default_host, browser=None, bot_id=None): argument
50 self.set_bot_id(bot_id)
56 def set_bot_id(self, bot_id): argument
57 self.bot_id = bot_id
91 if self.bot_id:
92 self._browser["bot_id"] = self.bot_id
Dstatusserver_unittest.py39 status_server = StatusServer(browser=mock_browser, bot_id='123')
/external/webkit/Tools/Scripts/webkitpy/tool/
Dmain.py86 if options.bot_id:
87 self.status_server.set_bot_id(options.bot_id)
Dmocktool.py615 def __init__(self, bot_id=None, work_items=None): argument
617 self.bot_id = bot_id
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dqueues.py88 if self._tool.status_server.bot_id:
89 webkit_patch_args += ["--bot-id=%s" % self._tool.status_server.bot_id]
265 bot_id = self._tool.status_server.bot_id or "bot"
266 description = "Archive of layout-test-results from %s" % bot_id
Dqueues_unittest.py65 tool.status_server.bot_id = "gort"
/external/webkit/Tools/QueueStatusServer/model/
Dqueuestatus.py36 bot_id = db.StringProperty() variable in QueueStatus
/external/webkit/Tools/
DChangeLog-2011-02-167477 since they were nearly identical. I also added bot_id support
18381 * QueueStatusServer/handlers/updatestatus.py: Accept bot_id as input
18382 * QueueStatusServer/model/queuestatus.py: Add bot_id property
18383 * QueueStatusServer/templates/updatestatus.html: Add bot_id input
18385 * Scripts/webkitpy/common/net/statusserver.py: Add bot_id