Reviewers: Erik Corry,

Message:
Should work now. Can't test win32.

Description:
Fix for test for Win32.

Please review this at http://codereview.chromium.org/339026

Affected files:
   M test/cctest/test-api.cc


Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index  
22b9477c65468316759682897d84646a39ebc21d..da8e5773a84d1049b11d8924146e4f5913e175bb
  
100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -8593,7 +8593,7 @@ THREADED_TEST(QuietSignalingNaNs) {
      } else {
        uint64_t stored_bits = DoubleToBits(stored_number);
        // Check if quiet nan (bits 51..62 all set).
-      CHECK_EQ(0xfff, (stored_bits >> 51) & 0xfff);
+      CHECK_EQ(0xfffu, (stored_bits >> 51) & 0xfffu);
      }

      // Check that Date::New preserves non-NaNs in the date range and
@@ -8606,7 +8606,7 @@ THREADED_TEST(QuietSignalingNaNs) {
      } else {
        uint64_t stored_bits = DoubleToBits(stored_date);
        // Check if quiet nan (bits 51..62 all set).
-      CHECK_EQ(0xfff, (stored_bits >> 51) & 0xfff);
+      CHECK_EQ(0xfffu, (stored_bits >> 51) & 0xfffu);
      }
    }
  }



--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to