File tree 4 files changed +15
-1
lines changed
4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
13
2015-01-14 Daniel Bates <
[email protected] >
2
14
3
15
[iOS] run-webkit-tests --ios hangs trying to launch iOS Simulator with unavailable runtime
Original file line number Diff line number Diff line change 1
1
application : webkit-queues
2
- version : 175488 # SVN revision of last major change
2
+ version : 178455 # SVN revision of last major change
3
3
runtime : python
4
4
api_version : 1
5
5
Original file line number Diff line number Diff line change 34
34
"commit-queue" ,
35
35
"style-queue" ,
36
36
"gtk-wk2-ews" ,
37
+ "ios-ews" ,
37
38
"mac-ews" ,
38
39
"mac-wk2-ews" ,
39
40
"win-ews" ,
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ def display_name(self):
77
77
display_name = display_name .title ()
78
78
display_name = display_name .replace ("Wk2" , "WK2" )
79
79
display_name = display_name .replace ("Ews" , "EWS" )
80
+ display_name = display_name .replace ("Ios" , "iOS" )
80
81
return display_name
81
82
82
83
_dash_regexp = re .compile ("-" )
You can’t perform that action at this time.
0 commit comments