Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Side by Side Diff: tests/language/src/MathVMTest.dart

Issue 9320023: Intrinisifed more core library methods: isNaN, isNegative, cos, sin. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/language/src/IntrinsifiedMethodsTest.dart ('k') | tests/language/src/Unary2Test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « tests/language/src/IntrinsifiedMethodsTest.dart ('k') | tests/language/src/Unary2Test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698