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

Unified Diff: runtime/vm/object_test.cc

Issue 327503004: Fix Windows build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_test.cc
===================================================================
--- runtime/vm/object_test.cc (revision 37118)
+++ runtime/vm/object_test.cc (working copy)
@@ -528,13 +528,6 @@
EXPECT(nan0.IsIdenticalTo(nan0));
EXPECT(nan0.CanonicalizeEquals(nan0));
EXPECT(!nan0.OperatorEquals(nan0));
- const Double& nan = Double::Handle(Double::New(0.0/0.0));
- const Double& inf = Double::Handle(Double::New(1.0/0.0));
- EXPECT(isnan(nan.value()));
- EXPECT(!isnan(inf.value()));
- EXPECT(!nan.IsIdenticalTo(inf));
- EXPECT(!nan.CanonicalizeEquals(inf));
- EXPECT(!nan.OperatorEquals(inf));
const Double& nan1 = Double::Handle(
Double::New(bit_cast<double>(kMaxUint64 - 0)));
const Double& nan2 = Double::Handle(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698