Title: [282766] trunk/JSTests
Revision
282766
Author
commit-qu...@webkit.org
Date
2021-09-20 11:56:53 -0700 (Mon, 20 Sep 2021)

Log Message

Skip stress/json-stringify-stack-overflow.js only on memory limited systems
https://bugs.webkit.org/show_bug.cgi?id=230489

Unreviewed gardening.

It's currently only failing on systems with low memory, regardless of
the arch.

Patch by Mikhail R. Gadelha <mikh...@igalia.com> on 2021-09-20

* stress/json-stringify-stack-overflow.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (282765 => 282766)


--- trunk/JSTests/ChangeLog	2021-09-20 18:42:17 UTC (rev 282765)
+++ trunk/JSTests/ChangeLog	2021-09-20 18:56:53 UTC (rev 282766)
@@ -1,3 +1,15 @@
+2021-09-20  Mikhail R. Gadelha  <mikh...@igalia.com>
+
+        Skip stress/json-stringify-stack-overflow.js only on memory limited systems
+        https://bugs.webkit.org/show_bug.cgi?id=230489
+
+        Unreviewed gardening.
+
+        It's currently only failing on systems with low memory, regardless of
+        the arch.
+
+        * stress/json-stringify-stack-overflow.js:
+
 2021-09-17  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] Add fast property enumeration mode for JSON.stringify

Modified: trunk/JSTests/stress/json-stringify-stack-overflow.js (282765 => 282766)


--- trunk/JSTests/stress/json-stringify-stack-overflow.js	2021-09-20 18:42:17 UTC (rev 282765)
+++ trunk/JSTests/stress/json-stringify-stack-overflow.js	2021-09-20 18:56:53 UTC (rev 282766)
@@ -1,4 +1,5 @@
-//@ if $buildType == "release" and $architecture != "arm" then runDefault else skip end
+//@ skip if $memoryLimited
+//@ if $buildType == "release" then runDefault else skip end
 
 function shouldThrowStackOverflow(fn) {
     let caught;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to