Title: [238324] trunk/JSTests
Revision
238324
Author
fpi...@apple.com
Date
2018-11-16 16:22:39 -0800 (Fri, 16 Nov 2018)

Log Message

Unreviewed, make some more tests not crash my computer by only running on instance of it. These tests do not need to
run for each JSC config since they're regression tests for runtime bugs.

* stress/json-stringified-overflow-2.js:
* stress/json-stringified-overflow.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (238323 => 238324)


--- trunk/JSTests/ChangeLog	2018-11-17 00:17:32 UTC (rev 238323)
+++ trunk/JSTests/ChangeLog	2018-11-17 00:22:39 UTC (rev 238324)
@@ -1,5 +1,13 @@
 2018-11-16  Filip Pizlo  <fpi...@apple.com>
 
+        Unreviewed, make some more tests not crash my computer by only running on instance of it. These tests do not need to
+        run for each JSC config since they're regression tests for runtime bugs.
+
+        * stress/json-stringified-overflow-2.js:
+        * stress/json-stringified-overflow.js:
+
+2018-11-16  Filip Pizlo  <fpi...@apple.com>
+
         Unreviewed, make some tests not crash my computer by only running on instance of it. These tests do not need to run for each JSC
         config since they're regression tests for runtime bugs.
 

Modified: trunk/JSTests/stress/json-stringified-overflow-2.js (238323 => 238324)


--- trunk/JSTests/stress/json-stringified-overflow-2.js	2018-11-17 00:17:32 UTC (rev 238323)
+++ trunk/JSTests/stress/json-stringified-overflow-2.js	2018-11-17 00:22:39 UTC (rev 238324)
@@ -1,4 +1,4 @@
-//@ skip if $memoryLimited
+//@ if $memoryLimited then skip else runDefault end
 
 try {
     const s = "a".padStart(0x80000000 - 1);

Modified: trunk/JSTests/stress/json-stringified-overflow.js (238323 => 238324)


--- trunk/JSTests/stress/json-stringified-overflow.js	2018-11-17 00:17:32 UTC (rev 238323)
+++ trunk/JSTests/stress/json-stringified-overflow.js	2018-11-17 00:22:39 UTC (rev 238324)
@@ -1,4 +1,4 @@
-//@ skip if $memoryLimited
+//@ if $memoryLimited then skip else runDefault end
 
 try {
     const s = "123".padStart(1073741823);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to