Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: test/mjsunit/string-oom-slow-to-uppercase.js

Issue 199853004: Throw exception on invalid string length instead of OOM. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: tests! Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/string-oom-slow-replace-one-with-string.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/string-oom-slow-to-uppercase.js
diff --git a/test/mjsunit/regress/regress-store-global-proxy.js b/test/mjsunit/string-oom-slow-to-uppercase.js
similarity index 56%
copy from test/mjsunit/regress/regress-store-global-proxy.js
copy to test/mjsunit/string-oom-slow-to-uppercase.js
index c85531c5fd917daa67b54e87141a164b90f3729b..79f975bd0d400f979fc9d0722c2255bc814654b0 100644
--- a/test/mjsunit/regress/regress-store-global-proxy.js
+++ b/test/mjsunit/string-oom-slow-to-uppercase.js
@@ -2,11 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-delete Object.prototype.__proto__;
+var s = "\u00df"; // ß
+for (var i = 0; i < 27; i++) s += s;
-function f() {
- this.toString = 1;
+function upper() {
+ s.toUpperCase();
}
-f.apply({});
-f();
+assertThrows(upper, RangeError);
« no previous file with comments | « test/mjsunit/string-oom-slow-replace-one-with-string.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698