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

Unified Diff: tests/corelib/double_round_to_double_test.dart

Issue 12667008: Update status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
« no previous file with comments | « tests/corelib/double_round_to_double2_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/double_round_to_double_test.dart
diff --git a/tests/corelib/double_round_to_double_test.dart b/tests/corelib/double_round_to_double_test.dart
index 8b00ed27aef251ac8d56b4f2fa26c9dd3093b1cb..178b659646ac14df14c61b7f638d598376001d73 100644
--- a/tests/corelib/double_round_to_double_test.dart
+++ b/tests/corelib/double_round_to_double_test.dart
@@ -8,7 +8,6 @@ main() {
Expect.equals(0.0, (2.0 * double.MIN_POSITIVE).roundToDouble());
Expect.equals(0.0, (1.18e-38).roundToDouble());
Expect.equals(0.0, (1.18e-38 * 2).roundToDouble());
- Expect.equals(0.0, 0.49999999999999994.roundToDouble());
Expect.equals(1.0, 0.5.roundToDouble());
Expect.equals(1.0, 0.9999999999999999.roundToDouble());
Expect.equals(1.0, 1.0.roundToDouble());
@@ -29,7 +28,6 @@ main() {
Expect.equals(0.0, (2.0 * -double.MIN_POSITIVE).roundToDouble());
Expect.equals(0.0, (-1.18e-38).roundToDouble());
Expect.equals(0.0, (-1.18e-38 * 2).roundToDouble());
- Expect.equals(0.0, (-0.49999999999999994).roundToDouble());
Expect.equals(-1.0, (-0.5).roundToDouble());
Expect.equals(-1.0, (-0.9999999999999999).roundToDouble());
Expect.equals(-1.0, (-1.0).roundToDouble());
@@ -53,7 +51,6 @@ main() {
Expect.isTrue((2.0 * double.MIN_POSITIVE).roundToDouble() is double);
Expect.isTrue((1.18e-38).roundToDouble() is double);
Expect.isTrue((1.18e-38 * 2).roundToDouble() is double);
- Expect.isTrue(0.49999999999999994.roundToDouble() is double);
Expect.isTrue(0.5.roundToDouble() is double);
Expect.isTrue(0.9999999999999999.roundToDouble() is double);
Expect.isTrue(1.0.roundToDouble() is double);
@@ -70,13 +67,11 @@ main() {
Expect.isTrue((2.0 * -double.MIN_POSITIVE).roundToDouble().isNegative);
Expect.isTrue((-1.18e-38).roundToDouble().isNegative);
Expect.isTrue((-1.18e-38 * 2).roundToDouble().isNegative);
- Expect.isTrue((-0.49999999999999994).roundToDouble().isNegative);
Expect.isTrue((-double.MIN_POSITIVE).roundToDouble() is double);
Expect.isTrue((2.0 * -double.MIN_POSITIVE).roundToDouble() is double);
Expect.isTrue((-1.18e-38).roundToDouble() is double);
Expect.isTrue((-1.18e-38 * 2).roundToDouble() is double);
- Expect.isTrue((-0.49999999999999994).roundToDouble() is double);
Expect.isTrue((-0.5).roundToDouble() is double);
Expect.isTrue((-0.9999999999999999).roundToDouble() is double);
Expect.isTrue((-1.0).roundToDouble() is double);
« no previous file with comments | « tests/corelib/double_round_to_double2_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698