Title: [202062] trunk/Tools
Revision
202062
Author
[email protected]
Date
2016-06-14 14:27:19 -0700 (Tue, 14 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._quit_ios_simulator): Do not use -v flag.
(IOSSimulatorPort.clean_up_test_run): Ditto.
(IOSSimulatorPort._createSimulatorApp): Ditto.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (202061 => 202062)


--- trunk/Tools/ChangeLog	2016-06-14 20:35:24 UTC (rev 202061)
+++ trunk/Tools/ChangeLog	2016-06-14 21:27:19 UTC (rev 202062)
@@ -1,3 +1,15 @@
+2016-06-14  Aakash Jain  <[email protected]>
+
+        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._quit_ios_simulator): Do not use -v flag.
+        (IOSSimulatorPort.clean_up_test_run): Ditto.
+        (IOSSimulatorPort._createSimulatorApp): Ditto.
+
 2016-06-14  David Kilzer  <[email protected]>
 
         Follow-up fix: REGRESSION (r202020): El Capitan CMake Debug build broken

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (202061 => 202062)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-14 20:35:24 UTC (rev 202061)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-14 21:27:19 UTC (rev 202062)
@@ -240,7 +240,7 @@
 
     def _quit_ios_simulator(self):
         # FIXME: We should kill only the Simulators we started.
-        subprocess.call(["killall", "-9", "-v", "-m", "Simulator"])
+        subprocess.call(["killall", "-9", "-m", "Simulator"])
 
     def clean_up_test_run(self):
         super(IOSSimulatorPort, self).clean_up_test_run()
@@ -257,7 +257,7 @@
             if not os.path.exists(self.get_simulator_path(i)):
                 continue
             try:
-                subprocess.call([self.LSREGISTER_PATH, "-v", "-u", self.get_simulator_path(i)])
+                subprocess.call([self.LSREGISTER_PATH, "-u", self.get_simulator_path(i)])
                 shutil.rmtree(self.get_simulator_path(i), ignore_errors=True)
                 shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Logs/CoreSimulator/",
                     self.testing_device(i).udid), ignore_errors=True)
@@ -497,4 +497,4 @@
         subprocess.check_output(["/usr/libexec/PlistBuddy", "-c", command, plist_path])
         subprocess.check_output(["install_name_tool", "-add_rpath", self.developer_dir + "/Library/PrivateFrameworks/", destination + "/Contents/MacOS/Simulator"])
         subprocess.check_output(["codesign", "-fs", "-", destination])
-        subprocess.check_output([self.LSREGISTER_PATH, "-v", "-f", destination])
+        subprocess.check_output([self.LSREGISTER_PATH, "-f", destination])
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to