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

Unified Diff: test/mjsunit/regress/regress-crbug-505007-2.js

Issue 1219693003: A couple of other "stack overflow" vs. "has_pending_exception()" issues in debugger fixed. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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/regress/regress-crbug-505007-1.js ('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-crbug-505007-2.js
diff --git a/test/mjsunit/regress/regress-crbug-501711.js b/test/mjsunit/regress/regress-crbug-505007-2.js
similarity index 70%
copy from test/mjsunit/regress/regress-crbug-501711.js
copy to test/mjsunit/regress/regress-crbug-505007-2.js
index f8eda6e8d8e26f41b79e05af891b0f5446b5cd37..dfa34ae6adec495615ef73a2f5c97aa21f5f415c 100644
--- a/test/mjsunit/regress/regress-crbug-501711.js
+++ b/test/mjsunit/regress/regress-crbug-505007-2.js
@@ -2,13 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --stack-size=100
+// Flags: --stack-size=100 --allow-natives-syntax
+function g() {}
function f() {
try {
f();
} catch(e) {
- Realm.create();
+ %ExecuteInDebugContext(g);
}
}
f();
« no previous file with comments | « test/mjsunit/regress/regress-crbug-505007-1.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698