Title: [184969] trunk/Source/_javascript_Core
Revision
184969
Author
[email protected]
Date
2015-05-28 16:51:57 -0700 (Thu, 28 May 2015)

Log Message

mozilla/js1_5/Array/regress-154338.js test causes ARM 32 bit iOS devices to run out of memory
https://bugs.webkit.org/show_bug.cgi?id=145444

Reviewed by Geoffrey Garen.

Disabled mozilla/js1_5/Array/regress-154338.js when run on iOS ARM 32 bit devices and
the --memory-limited option is passed to run-jsc-stress-tests.

* tests/mozilla/mozilla-tests.yaml:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (184968 => 184969)


--- trunk/Source/_javascript_Core/ChangeLog	2015-05-28 23:48:29 UTC (rev 184968)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-05-28 23:51:57 UTC (rev 184969)
@@ -1,3 +1,15 @@
+2015-05-28  Michael Saboff  <[email protected]>
+
+        mozilla/js1_5/Array/regress-154338.js test causes ARM 32 bit iOS devices to run out of memory
+        https://bugs.webkit.org/show_bug.cgi?id=145444
+
+        Reviewed by Geoffrey Garen.
+
+        Disabled mozilla/js1_5/Array/regress-154338.js when run on iOS ARM 32 bit devices and
+        the --memory-limited option is passed to run-jsc-stress-tests.
+
+        * tests/mozilla/mozilla-tests.yaml:
+
 2015-05-28  Benjamin Poulain  <[email protected]>
 
         [iOS8][ARMv7(s)] Optimized Object.create in 'use strict' context sometimes breaks.

Modified: trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml (184968 => 184969)


--- trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-05-28 23:48:29 UTC (rev 184968)
+++ trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-05-28 23:51:57 UTC (rev 184969)
@@ -2035,7 +2035,12 @@
 - path: js1_5/Array/regress-154338.js
   cmd: defaultRunMozillaTest :normal, "../shell.js"
 - path: js1_5/Array/regress-157652.js
-  cmd: defaultRunMozillaTest :normal, "../shell.js"
+  cmd: |
+      if ($architecture == "arm" and $hostOS == "darwin") and $memoryLimited
+          skip
+      else
+          defaultRunMozillaTest :normal, "../shell.js"
+      end
 - path: js1_5/Array/regress-178722.js
   cmd: defaultRunMozillaTest :normal, "../shell.js"
 - path: js1_5/Array/regress-94257.js
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to