| OLD | NEW |
| (Empty) |
| 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 | |
| 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. | |
| 5 // VMOptions=--optimization_counter_threshold=100 | |
| 6 | |
| 7 library math_vm_test; | |
| 8 | |
| 9 import "package:expect/expect.dart"; | |
| 10 import 'dart:math'; | |
| 11 | |
| 12 class FakeNumber { | |
| 13 const FakeNumber(); | |
| 14 void toDouble() {} | |
| 15 } | |
| 16 | |
| 17 class MathTest { | |
| 18 static bool testParseInt(x) { | |
| 19 try { | |
| 20 int.parse(x); // Expects string. | |
| 21 return true; | |
| 22 } catch (e) { | |
| 23 return false; | |
| 24 } | |
| 25 } | |
| 26 | |
| 27 static bool testSqrt(x) { | |
| 28 try { | |
| 29 sqrt(x); // Expects number. | |
| 30 return true; | |
| 31 } catch (e) { | |
| 32 return false; | |
| 33 } | |
| 34 } | |
| 35 | |
| 36 static void testMain() { | |
| 37 Expect.equals(false, testParseInt(5)); | |
| 38 Expect.equals(false, testSqrt(const FakeNumber())); | |
| 39 } | |
| 40 } | |
| 41 | |
| 42 testDoublePow() { | |
| 43 Expect.equals((1 << 32).toDouble(), pow(2.0, 32)); | |
| 44 } | |
| 45 | |
| 46 | |
| 47 testSinCos(a) { | |
| 48 double sVal = sin(a); | |
| 49 double cVal = cos(a); | |
| 50 return sVal + cVal; | |
| 51 } | |
| 52 | |
| 53 main() { | |
| 54 const double value = 1.54; | |
| 55 final firstRes = testSinCos(value); | |
| 56 for (int i = 0; i < 200; i++) { | |
| 57 MathTest.testMain(); | |
| 58 testDoublePow(); | |
| 59 testSinCos(value); | |
| 60 } | |
| 61 Expect.equals(firstRes, testSinCos(value)); | |
| 62 } | |
| OLD | NEW |