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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: tests/language/src/MathVMTest.dart
===================================================================
--- tests/language/src/MathVMTest.dart (revision 3812)
+++ tests/language/src/MathVMTest.dart (working copy)
@@ -1,7 +1,7 @@
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// Tests that the VM does not crash on weird cornercases of class Math.
+// Tests that the VM does not crash on weird corner cases of class Math.
class FakeNumber {
const FakeNumber();
@@ -11,7 +11,7 @@
class MathTest {
static bool testParseInt(x) {
try {
- Math.parseInt(x);
+ Math.parseInt(x); // Expects string.
return true;
} catch (var e) {
return false;
@@ -20,7 +20,7 @@
static bool testSqrt(x) {
try {
- Math.sqrt(x);
+ Math.sqrt(x); // Expects number.
return true;
} catch (var e) {
return false;
@@ -33,5 +33,7 @@
}
}
main() {
- MathTest.testMain();
+ for (int i = 0; i < 2000; i++) {
+ MathTest.testMain();
+ }
}

Powered by Google App Engine
This is Rietveld 408576698