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

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

Issue 1051833002: Reland: Fix JSON parser Handle leak (previous CL 1041483004) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix handling of stack overflow Created 5 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/regress/regress-3976.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-472504.js
diff --git a/test/message/super-in-function.js b/test/mjsunit/regress/regress-472504.js
similarity index 55%
copy from test/message/super-in-function.js
copy to test/mjsunit/regress/regress-472504.js
index edaa0e4eadc7befdb7ed28a3e06eaa827c4388f0..0e956f6e94d73885c29e4f24a1feb11acaf68628 100644
--- a/test/message/super-in-function.js
+++ b/test/mjsunit/regress/regress-472504.js
@@ -1,10 +1,9 @@
// 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.
-//
-// Flags: --harmony-classes
-'use strict';
Michael Starzinger 2015/04/01 16:18:11 suggestion: I don't know how long this test runs,
Erik Corry Chromium.org 2015/04/01 16:55:24 It already runs in 0.04s, so I think it's not an i
Michael Starzinger 2015/04/01 16:56:19 Acknowledged. Agreed. :)
-function f() {
- super.x();
+// Should not crash in ASAN.
+function shouldThrow() {
+ shouldThrow(JSON.parse('{"0":1}'));
}
+assertThrows("shouldThrow()", RangeError);
« no previous file with comments | « test/mjsunit/regress/regress-3976.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698