Title: [208047] trunk/JSTests
Revision
208047
Author
o...@webkit.org
Date
2016-10-28 07:21:04 -0700 (Fri, 28 Oct 2016)

Log Message

Skip 2 JS stress tests on memory limited devices
https://bugs.webkit.org/show_bug.cgi?id=164125

Unreviewed quick fix to unbreak JSCOnly ARM bots as soon as possible.


* stress/joined-strings-should-not-exceed-max-string-length.js:
* stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (208046 => 208047)


--- trunk/JSTests/ChangeLog	2016-10-28 13:59:20 UTC (rev 208046)
+++ trunk/JSTests/ChangeLog	2016-10-28 14:21:04 UTC (rev 208047)
@@ -1,3 +1,13 @@
+2016-10-28  Csaba Osztrogonác  <o...@webkit.org>
+
+        Skip 2 JS stress tests on memory limited devices
+        https://bugs.webkit.org/show_bug.cgi?id=164125
+
+        Unreviewed quick fix to unbreak JSCOnly ARM bots as soon as possible.
+
+        * stress/joined-strings-should-not-exceed-max-string-length.js:
+        * stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js:
+
 2016-10-27  Caitlin Potter  <ca...@igalia.com>
 
         [JSC] forbid lexical redeclaration of generator formal parameters

Modified: trunk/JSTests/stress/joined-strings-should-not-exceed-max-string-length.js (208046 => 208047)


--- trunk/JSTests/stress/joined-strings-should-not-exceed-max-string-length.js	2016-10-28 13:59:20 UTC (rev 208046)
+++ trunk/JSTests/stress/joined-strings-should-not-exceed-max-string-length.js	2016-10-28 14:21:04 UTC (rev 208047)
@@ -1,5 +1,5 @@
-//@ runFTLNoCJIT
 //@ largeHeap
+//@ runFTLNoCJIT if !$memoryLimited
 // This test should not crash or fail any assertions.
 
 function shouldEqual(stepId, actual, expected) {

Modified: trunk/JSTests/stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js (208046 => 208047)


--- trunk/JSTests/stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js	2016-10-28 13:59:20 UTC (rev 208046)
+++ trunk/JSTests/stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js	2016-10-28 14:21:04 UTC (rev 208047)
@@ -1,6 +1,6 @@
-//@ runFTLNoCJIT
+//@ largeHeap
+//@ runFTLNoCJIT if !$memoryLimited
 //@ slow!
-//@largeHeap
 // This test should not crash or fail any assertions.
 
 function shouldEqual(testId, actual, expected) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to