Title: [214981] trunk/Tools
Revision
214981
Author
[email protected]
Date
2017-04-05 17:13:52 -0700 (Wed, 05 Apr 2017)

Log Message

Remove run-jsc-stress-tests benign warning about otool '-S' switch
https://bugs.webkit.org/show_bug.cgi?id=170527

Patch by Joseph Pecoraro <[email protected]> on 2017-04-05
Reviewed by Aakash Jain.

* Scripts/run-jsc-stress-tests:
The switch is not necessary and produces an error.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (214980 => 214981)


--- trunk/Tools/ChangeLog	2017-04-06 00:03:44 UTC (rev 214980)
+++ trunk/Tools/ChangeLog	2017-04-06 00:13:52 UTC (rev 214981)
@@ -1,3 +1,13 @@
+2017-04-05  Joseph Pecoraro  <[email protected]>
+
+        Remove run-jsc-stress-tests benign warning about otool '-S' switch
+        https://bugs.webkit.org/show_bug.cgi?id=170527
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/run-jsc-stress-tests:
+        The switch is not necessary and produces an error.
+
 2017-04-05  Jonathan Bedard  <[email protected]>
 
         webkitpy: Add pid logging for simulator processes

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (214980 => 214981)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2017-04-06 00:03:44 UTC (rev 214980)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2017-04-06 00:13:52 UTC (rev 214981)
@@ -294,7 +294,7 @@
 # Try to determine architecture. Return nil on failure.
 def machOArchitectureCode
     begin 
-        otoolLines = `otool -aSfh #{Shellwords.shellescape($jscPath.to_s)}`.split("\n")
+        otoolLines = `otool -afh #{Shellwords.shellescape($jscPath.to_s)}`.split("\n")
         otoolLines.each_with_index {
             | value, index |
             if value =~ /magic/ and value =~ /cputype/
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to