OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Dart program testing stack overflow. | 4 // Dart program testing stack overflow. |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
6 class StackOverflowTest { | 8 class StackOverflowTest { |
7 | 9 |
8 static void curseTheRecurse(a, b, c) { | 10 static void curseTheRecurse(a, b, c) { |
9 curseTheRecurse(b, c, a); | 11 curseTheRecurse(b, c, a); |
10 } | 12 } |
11 | 13 |
12 static void testMain() { | 14 static void testMain() { |
13 bool exceptionCaught = false; | 15 bool exceptionCaught = false; |
14 try { | 16 try { |
15 curseTheRecurse(1, 2, 3); | 17 curseTheRecurse(1, 2, 3); |
16 } on StackOverflowError catch (e, stacktrace) { | 18 } on StackOverflowError catch (e, stacktrace) { |
17 String s = stacktrace.toString(); | 19 String s = stacktrace.toString(); |
18 Expect.equals(-1, s.indexOf("-1:-1")); | 20 Expect.equals(-1, s.indexOf("-1:-1")); |
19 exceptionCaught = true; | 21 exceptionCaught = true; |
20 } | 22 } |
21 Expect.equals(true, exceptionCaught); | 23 Expect.equals(true, exceptionCaught); |
22 } | 24 } |
23 } | 25 } |
24 | 26 |
25 main() { | 27 main() { |
26 StackOverflowTest.testMain(); | 28 StackOverflowTest.testMain(); |
27 } | 29 } |
OLD | NEW |