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

Unified Diff: test/mjsunit/regress/regress-633998.js

Issue 2206313002: Handle stack overflows in NoSideEffectToString (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disallow recursion in NoSideEffectToString Created 4 years, 4 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 | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-633998.js
diff --git a/test/mjsunit/regress/regress-633998.js b/test/mjsunit/regress/regress-633998.js
new file mode 100644
index 0000000000000000000000000000000000000000..ff34a0a44ebec3f8867f9f1e246797e1d15c92a2
--- /dev/null
+++ b/test/mjsunit/regress/regress-633998.js
@@ -0,0 +1,44 @@
+// Copyright 2015 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 err_str_1 = "apply was called on , which is a object and not a function";
+var err_str_2 =
+ "apply was called on Error, which is a object and not a function";
+
+var reached = false;
+var error = new Error();
+error.name = error;
+try {
+ Reflect.apply(error);
+ reached = true;
+} catch (e) {
+ assertTrue(e.stack.indexOf(err_str_1) != -1);
+} finally {
+ assertFalse(reached);
+}
+
+reached = false;
+error = new Error();
+error.msg = error;
+try {
+ Reflect.apply(error);
+ reached = true;
+} catch (e) {
+ assertTrue(e.stack.indexOf(err_str_2) != -1);
+} finally {
+ assertFalse(reached);
+}
+
+reached = false;
+error = new Error();
+error.name = error;
+error.msg = error;
+try {
+ Reflect.apply(error);
+ reached = true;
+} catch (e) {
+ assertTrue(e.stack.indexOf(err_str_1) != -1);
+} finally {
+ assertFalse(reached);
+}
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698