| OLD | NEW |
| 1 // Copyright (c) 2012, 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 corner cases of class Math. | 4 // Tests that the VM does not crash on weird corner cases of class Math. |
| 5 // VMOptions=--optimization_invocation_threshold=100 |
| 5 | 6 |
| 6 class FakeNumber { | 7 class FakeNumber { |
| 7 const FakeNumber(); | 8 const FakeNumber(); |
| 8 void toDouble() {} | 9 void toDouble() {} |
| 9 } | 10 } |
| 10 | 11 |
| 11 class MathTest { | 12 class MathTest { |
| 12 static bool testParseInt(x) { | 13 static bool testParseInt(x) { |
| 13 try { | 14 try { |
| 14 Math.parseInt(x); // Expects string. | 15 Math.parseInt(x); // Expects string. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 26 return false; | 27 return false; |
| 27 } | 28 } |
| 28 } | 29 } |
| 29 | 30 |
| 30 static void testMain() { | 31 static void testMain() { |
| 31 Expect.equals(false, testParseInt(5)); | 32 Expect.equals(false, testParseInt(5)); |
| 32 Expect.equals(false, testSqrt(const FakeNumber())); | 33 Expect.equals(false, testSqrt(const FakeNumber())); |
| 33 } | 34 } |
| 34 } | 35 } |
| 35 main() { | 36 main() { |
| 36 for (int i = 0; i < 2000; i++) { | 37 for (int i = 0; i < 200; i++) { |
| 37 MathTest.testMain(); | 38 MathTest.testMain(); |
| 38 } | 39 } |
| 39 } | 40 } |
| OLD | NEW |