Title: [215195] trunk/Tools
Revision
215195
Author
commit-qu...@webkit.org
Date
2017-04-10 12:01:57 -0700 (Mon, 10 Apr 2017)

Log Message

[JSC] Do not run FTL stress tests on MIPS
https://bugs.webkit.org/show_bug.cgi?id=170684

Patch by Guillaume Emont <guijem...@igalia.com> on 2017-04-10
Reviewed by Carlos Alberto Lopez Perez.

run-jsc-stress-tests does not correctly detect MIPS platforms, and its
logic to detect if the platform supports FTL ignores that MIPS does
not support FTL. This adds detection of MIPS (with the magic number
determined empirically) and fixes the determination of whether we
support FTL.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (215194 => 215195)


--- trunk/Tools/ChangeLog	2017-04-10 18:34:53 UTC (rev 215194)
+++ trunk/Tools/ChangeLog	2017-04-10 19:01:57 UTC (rev 215195)
@@ -1,3 +1,18 @@
+2017-04-10  Guillaume Emont  <guijem...@igalia.com>
+
+        [JSC] Do not run FTL stress tests on MIPS
+        https://bugs.webkit.org/show_bug.cgi?id=170684
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        run-jsc-stress-tests does not correctly detect MIPS platforms, and its
+        logic to detect if the platform supports FTL ignores that MIPS does
+        not support FTL. This adds detection of MIPS (with the magic number
+        determined empirically) and fixes the determination of whether we
+        support FTL.
+
+        * Scripts/run-jsc-stress-tests:
+
 2017-04-10  Jonathan Bedard  <jbed...@apple.com>
 
         webkitpy: Increase estimate for processes run by iOS Simulators

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (215194 => 215195)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2017-04-10 18:34:53 UTC (rev 215194)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2017-04-10 19:01:57 UTC (rev 215195)
@@ -340,6 +340,8 @@
     case code
     when 3
         "x86"
+    when 8
+        "mips"
     when 62
         "x86-64"
     when 40
@@ -411,7 +413,7 @@
 
 $hostOS = determineOS unless $hostOS
 $architecture = determineArchitecture unless $architecture
-$isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64")
+$isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $architecture == "mips" || $hostOS == "windows" || $hostOS == "linux" && $architecture == "arm64")
 
 if !$testRunnerType
     if $remote and $hostOS == "darwin"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to