Title: [190519] trunk/Tools
Revision
190519
Author
[email protected]
Date
2015-10-02 13:38:34 -0700 (Fri, 02 Oct 2015)

Log Message

Fix run-webkit-tests --ios-simulator after <http://trac.webkit.org/changeset/190515>
(https://bugs.webkit.org/show_bug.cgi?id=149753)

For now, pass --ios-simulator.

* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort._build_relay):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (190518 => 190519)


--- trunk/Tools/ChangeLog	2015-10-02 20:37:28 UTC (rev 190518)
+++ trunk/Tools/ChangeLog	2015-10-02 20:38:34 UTC (rev 190519)
@@ -1,3 +1,13 @@
+2015-10-02  Daniel Bates  <[email protected]>
+
+        Fix run-webkit-tests --ios-simulator after <http://trac.webkit.org/changeset/190515>
+        (https://bugs.webkit.org/show_bug.cgi?id=149753)
+
+        For now, pass --ios-simulator.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSSimulatorPort._build_relay):
+
 2015-10-02  Simon Fraser  <[email protected]>
 
         Remove a "nullable" that breaks the iOS 8 build.

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (190518 => 190519)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2015-10-02 20:37:28 UTC (rev 190518)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2015-10-02 20:38:34 UTC (rev 190519)
@@ -157,7 +157,9 @@
         env = environment.to_dictionary()
 
         try:
-            self._run_script("build-layouttestrelay", env=env)
+            # FIXME: We should be passing _arguments_for_configuration(), which respects build configuration and port,
+            # instead of hardcoding --ios-simulator.
+            self._run_script("build-layouttestrelay", args=["--ios-simulator"], env=env)
         except ScriptError, e:
             _log.error(e.message_with_output(output_limit=None))
             return False
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to