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_counter_threshold=100 | 5 // VMOptions=--optimization_counter_threshold=100 |
6 | 6 |
7 library math_vm_test; | 7 library math_vm_test; |
8 | 8 |
| 9 import "package:expect/expect.dart"; |
9 import 'dart:math'; | 10 import 'dart:math'; |
10 | 11 |
11 class FakeNumber { | 12 class FakeNumber { |
12 const FakeNumber(); | 13 const FakeNumber(); |
13 void toDouble() {} | 14 void toDouble() {} |
14 } | 15 } |
15 | 16 |
16 class MathTest { | 17 class MathTest { |
17 static bool testParseInt(x) { | 18 static bool testParseInt(x) { |
18 try { | 19 try { |
(...skipping 23 matching lines...) Expand all Loading... |
42 Expect.equals((1 << 32).toDouble(), pow(2.0, 32)); | 43 Expect.equals((1 << 32).toDouble(), pow(2.0, 32)); |
43 } | 44 } |
44 | 45 |
45 | 46 |
46 main() { | 47 main() { |
47 for (int i = 0; i < 200; i++) { | 48 for (int i = 0; i < 200; i++) { |
48 MathTest.testMain(); | 49 MathTest.testMain(); |
49 testDoublePow(); | 50 testDoublePow(); |
50 } | 51 } |
51 } | 52 } |
OLD | NEW |