Skip to content

Commit 50e835f

Browse files
Create iOS-EWS server queue
https://bugs.webkit.org/show_bug.cgi?id=140473 Patch by Jake Nielsen <[email protected]> on 2015-01-14 Reviewed by Benjamin Poulain. * QueueStatusServer/app.yaml: Updates the SVN version number. * QueueStatusServer/config/queues.py: Add ios-ews queue. * QueueStatusServer/model/queues.py: (Queue.display_name): Makes sure the display name is pretty! git-svn-id: http://svn.webkit.org/repository/webkit/trunk@178465 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 0576c7b commit 50e835f

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

Tools/ChangeLog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2015-01-14 Jake Nielsen <[email protected]>
2+
3+
Create iOS-EWS server queue
4+
https://bugs.webkit.org/show_bug.cgi?id=140473
5+
6+
Reviewed by Benjamin Poulain.
7+
8+
* QueueStatusServer/app.yaml: Updates the SVN version number.
9+
* QueueStatusServer/config/queues.py: Add ios-ews queue.
10+
* QueueStatusServer/model/queues.py:
11+
(Queue.display_name): Makes sure the display name is pretty!
12+
113
2015-01-14 Daniel Bates <[email protected]>
214

315
[iOS] run-webkit-tests --ios hangs trying to launch iOS Simulator with unavailable runtime

Tools/QueueStatusServer/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
application: webkit-queues
2-
version: 175488 # SVN revision of last major change
2+
version: 178455 # SVN revision of last major change
33
runtime: python
44
api_version: 1
55

Tools/QueueStatusServer/config/queues.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"commit-queue",
3535
"style-queue",
3636
"gtk-wk2-ews",
37+
"ios-ews",
3738
"mac-ews",
3839
"mac-wk2-ews",
3940
"win-ews",

Tools/QueueStatusServer/model/queues.py

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def display_name(self):
7777
display_name = display_name.title()
7878
display_name = display_name.replace("Wk2", "WK2")
7979
display_name = display_name.replace("Ews", "EWS")
80+
display_name = display_name.replace("Ios", "iOS")
8081
return display_name
8182

8283
_dash_regexp = re.compile("-")

0 commit comments

Comments
 (0)