Revision: 20186
Author: [email protected]
Date: Mon Mar 24 10:37:16 2014 UTC
Log: Delete mjsunit/string-oom-slow-* tests.
They are too slow, and there is no feasible way to speed them up.
[email protected]
Review URL: https://codereview.chromium.org/205553005
http://code.google.com/p/v8/source/detail?r=20186
Deleted:
/branches/bleeding_edge/test/mjsunit/string-oom-slow-escape.js
/branches/bleeding_edge/test/mjsunit/string-oom-slow-json-stringify.js
/branches/bleeding_edge/test/mjsunit/string-oom-slow-replace-one-with-string.js
/branches/bleeding_edge/test/mjsunit/string-oom-slow-to-uppercase.js
Modified:
/branches/bleeding_edge/test/mjsunit/mjsunit.status
=======================================
--- /branches/bleeding_edge/test/mjsunit/string-oom-slow-escape.js Thu Mar
20 12:27:36 2014 UTC
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-
-var a = '<';
-for (var i = 0; i < 26; i++) a += a;
-a = a + a + a;
-
-function escape_a() {
- escape(a);
-}
-
-assertThrows(escape_a, RangeError);
=======================================
--- /branches/bleeding_edge/test/mjsunit/string-oom-slow-json-stringify.js
Thu Mar 20 12:27:36 2014 UTC
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-var a = 'a';
-for (var i = 0; i < 20; i++) a += a;
-for (var i = 0; i < 8; i++) a = [a, a];
-
-function stringify() {
- JSON.stringify(a);
-}
-
-assertThrows(stringify, RangeError);
=======================================
---
/branches/bleeding_edge/test/mjsunit/string-oom-slow-replace-one-with-string.js
Thu Mar 20 12:27:36 2014 UTC
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-var a = 'a';
-for (var i = 0; i < 27; i++) a += a;
-
-function replace() {
- a.replace('a', a);
-}
-
-assertThrows(replace, RangeError);
=======================================
--- /branches/bleeding_edge/test/mjsunit/string-oom-slow-to-uppercase.js
Thu Mar 20 12:27:36 2014 UTC
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-var s = "\u00df"; // ß
-for (var i = 0; i < 27; i++) s += s;
-
-function upper() {
- s.toUpperCase();
-}
-
-assertThrows(upper, RangeError);
=======================================
--- /branches/bleeding_edge/test/mjsunit/mjsunit.status Fri Mar 21 10:34:07
2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/mjsunit.status Mon Mar 24 10:37:16
2014 UTC
@@ -44,7 +44,6 @@
# When that bug is fixed, revert the expectation to:
# Skip long running test in debug and allow it to timeout in release
mode.
# regress/regress-524: [PASS, TIMEOUT, ['mode == debug', SKIP]],
- 'string-oom-slow-*': [PASS, SLOW, ['mode == debug', SKIP]],
# This test non-deterministically runs out of memory on Windows ia32.
'regress/regress-crbug-160010': [SKIP],
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.