Title: [229057] trunk
Revision
229057
Author
[email protected]
Date
2018-02-27 01:36:28 -0800 (Tue, 27 Feb 2018)

Log Message

Unreviewed, skip FTL tests if FTL is disabled
https://bugs.webkit.org/show_bug.cgi?id=183071

JSTests:

* stress/has-indexed-property-array-storage-ftl.js:
* stress/has-indexed-property-slow-put-array-storage-ftl.js:

Tools:

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (229056 => 229057)


--- trunk/JSTests/ChangeLog	2018-02-27 08:06:41 UTC (rev 229056)
+++ trunk/JSTests/ChangeLog	2018-02-27 09:36:28 UTC (rev 229057)
@@ -1,3 +1,11 @@
+2018-02-27  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, skip FTL tests if FTL is disabled
+        https://bugs.webkit.org/show_bug.cgi?id=183071
+
+        * stress/has-indexed-property-array-storage-ftl.js:
+        * stress/has-indexed-property-slow-put-array-storage-ftl.js:
+
 2018-02-25  Yusuke Suzuki  <[email protected]>
 
         [FTL] Support PutByVal(ArrayStorage/SlowPutArrayStorage)

Modified: trunk/JSTests/stress/has-indexed-property-array-storage-ftl.js (229056 => 229057)


--- trunk/JSTests/stress/has-indexed-property-array-storage-ftl.js	2018-02-27 08:06:41 UTC (rev 229056)
+++ trunk/JSTests/stress/has-indexed-property-array-storage-ftl.js	2018-02-27 09:36:28 UTC (rev 229057)
@@ -1,4 +1,4 @@
-//@ if $isFTLPlatform then runFTLNoCJIT else skip end
+//@ if isFTLEnabled then runFTLNoCJIT else skip end
 
 function shouldBe(actual, expected) {
     if (actual !== expected)

Modified: trunk/JSTests/stress/has-indexed-property-slow-put-array-storage-ftl.js (229056 => 229057)


--- trunk/JSTests/stress/has-indexed-property-slow-put-array-storage-ftl.js	2018-02-27 08:06:41 UTC (rev 229056)
+++ trunk/JSTests/stress/has-indexed-property-slow-put-array-storage-ftl.js	2018-02-27 09:36:28 UTC (rev 229057)
@@ -1,4 +1,4 @@
-//@ if $isFTLPlatform then runFTLNoCJIT else skip end
+//@ if isFTLEnabled then runFTLNoCJIT else skip end
 
 function shouldBe(actual, expected) {
     if (actual !== expected)

Modified: trunk/Tools/ChangeLog (229056 => 229057)


--- trunk/Tools/ChangeLog	2018-02-27 08:06:41 UTC (rev 229056)
+++ trunk/Tools/ChangeLog	2018-02-27 09:36:28 UTC (rev 229057)
@@ -1,3 +1,10 @@
+2018-02-27  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, skip FTL tests if FTL is disabled
+        https://bugs.webkit.org/show_bug.cgi?id=183071
+
+        * Scripts/run-jsc-stress-tests:
+
 2018-02-26  Don Olmstead  <[email protected]>
 
         Fix WebCore includes within WebKitLegacy

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (229056 => 229057)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2018-02-27 08:06:41 UTC (rev 229056)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2018-02-27 09:36:28 UTC (rev 229057)
@@ -433,6 +433,10 @@
 $architecture = determineArchitecture unless $architecture
 $isFTLPlatform = !($architecture == "x86" || $architecture == "arm" || $architecture == "mips" || $hostOS == "windows")
 
+def isFTLEnabled
+    $jitTests && $isFTLPlatform
+end
+
 if !$testRunnerType
     if $remote and $hostOS == "darwin"
         $testRunnerType = :shell
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to