Title: [276346] trunk/JSTests
Revision
276346
Author
[email protected]
Date
2021-04-20 23:58:19 -0700 (Tue, 20 Apr 2021)

Log Message

Unskip couple of tests for armv7l and mips
https://bugs.webkit.org/show_bug.cgi?id=224607

Unreviewed gardening.


* stress/check-stack-overflow-before-value-profiling-arguments.js:
(fullGC):
* stress/intl-suppored-locales-of.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (276345 => 276346)


--- trunk/JSTests/ChangeLog	2021-04-21 05:47:02 UTC (rev 276345)
+++ trunk/JSTests/ChangeLog	2021-04-21 06:58:19 UTC (rev 276346)
@@ -1,3 +1,14 @@
+2021-04-20  Paulo Matos  <[email protected]>
+
+        Unskip couple of tests for armv7l and mips
+        https://bugs.webkit.org/show_bug.cgi?id=224607
+
+        Unreviewed gardening.
+
+        * stress/check-stack-overflow-before-value-profiling-arguments.js:
+        (fullGC):
+        * stress/intl-suppored-locales-of.js:
+
 2021-04-20  Yusuke Suzuki  <[email protected]>
 
         [JSC] Limit memory allocation size of JSTests/stress/early-return-from-builtin.js

Modified: trunk/JSTests/stress/check-stack-overflow-before-value-profiling-arguments.js (276345 => 276346)


--- trunk/JSTests/stress/check-stack-overflow-before-value-profiling-arguments.js	2021-04-21 05:47:02 UTC (rev 276345)
+++ trunk/JSTests/stress/check-stack-overflow-before-value-profiling-arguments.js	2021-04-21 06:58:19 UTC (rev 276346)
@@ -1,9 +1,11 @@
-//@ skip if ["arm", "mips"].include?($architecture)
+//@ requireOptions("-e", "let arraysize=0x100000") if ["arm", "mips"].include?($architecture)
 //@ runDefault("--useConcurrentJIT=0", "--thresholdForJITAfterWarmUp=10", "--slowPathAllocsBetweenGCs=10", "--useConcurrentGC=0")
 
+arraysize = typeof(arraysize) === 'undefined' ? 0x1000000 : arraysize;
+
 function fullGC() {
     for (var i = 0; i < 10; i++) {
-        new Float64Array(0x1000000);
+        new Float64Array(arraysize);
     }
 }
 

Modified: trunk/JSTests/stress/intl-suppored-locales-of.js (276345 => 276346)


--- trunk/JSTests/stress/intl-suppored-locales-of.js	2021-04-21 05:47:02 UTC (rev 276345)
+++ trunk/JSTests/stress/intl-suppored-locales-of.js	2021-04-21 06:58:19 UTC (rev 276346)
@@ -1,4 +1,3 @@
-//@ skip if ["arm", "mips"].include?($architecture)
 function shouldBe(actual, expected) {
     if (actual !== expected)
         throw new Error('bad value: ' + actual);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to