Title: [202107] trunk/Tools
Revision
202107
Author
aakash_j...@apple.com
Date
2016-06-15 14:25:53 -0700 (Wed, 15 Jun 2016)

Log Message

Too much log data generated during layout-tests on iOS Simulator
https://bugs.webkit.org/show_bug.cgi?id=158751

Reviewed by Alexey Proskuryakov.

* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort.developer_dir): memoized the property so that it is not called
repeatedly.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (202106 => 202107)


--- trunk/Tools/ChangeLog	2016-06-15 21:15:13 UTC (rev 202106)
+++ trunk/Tools/ChangeLog	2016-06-15 21:25:53 UTC (rev 202107)
@@ -1,3 +1,14 @@
+2016-06-15  Aakash Jain  <aakash_j...@apple.com>
+
+        Too much log data generated during layout-tests on iOS Simulator
+        https://bugs.webkit.org/show_bug.cgi?id=158751
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSSimulatorPort.developer_dir): memoized the property so that it is not called
+        repeatedly.
+
 2016-06-15  Per Arne Vollan  <pvol...@apple.com>
 
         [Win][CMake] Changes in WebKit options are not reflected in incremental builds.

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (202106 => 202107)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-15 21:15:13 UTC (rev 202106)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-15 21:25:53 UTC (rev 202107)
@@ -469,6 +469,7 @@
             return fallback
 
     @property
+    @memoized
     def developer_dir(self):
         return self._executive.run_command(['xcode-select', '--print-path']).rstrip()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to