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); |