| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Tests that the VM does not crash on weird cornercases of class Math. | 4 // Tests that the VM does not crash on weird corner cases of class Math. |
| 5 | 5 |
| 6 class FakeNumber { | 6 class FakeNumber { |
| 7 const FakeNumber(); | 7 const FakeNumber(); |
| 8 void toDouble() {} | 8 void toDouble() {} |
| 9 } | 9 } |
| 10 | 10 |
| 11 class MathTest { | 11 class MathTest { |
| 12 static bool testParseInt(x) { | 12 static bool testParseInt(x) { |
| 13 try { | 13 try { |
| 14 Math.parseInt(x); | 14 Math.parseInt(x); // Expects string. |
| 15 return true; | 15 return true; |
| 16 } catch (var e) { | 16 } catch (var e) { |
| 17 return false; | 17 return false; |
| 18 } | 18 } |
| 19 } | 19 } |
| 20 | 20 |
| 21 static bool testSqrt(x) { | 21 static bool testSqrt(x) { |
| 22 try { | 22 try { |
| 23 Math.sqrt(x); | 23 Math.sqrt(x); // Expects number. |
| 24 return true; | 24 return true; |
| 25 } catch (var e) { | 25 } catch (var e) { |
| 26 return false; | 26 return false; |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 | 29 |
| 30 static void testMain() { | 30 static void testMain() { |
| 31 Expect.equals(false, testParseInt(5)); | 31 Expect.equals(false, testParseInt(5)); |
| 32 Expect.equals(false, testSqrt(const FakeNumber())); | 32 Expect.equals(false, testSqrt(const FakeNumber())); |
| 33 } | 33 } |
| 34 } | 34 } |
| 35 main() { | 35 main() { |
| 36 MathTest.testMain(); | 36 for (int i = 0; i < 2000; i++) { |
| 37 MathTest.testMain(); |
| 38 } |
| 37 } | 39 } |
| OLD | NEW |