Title: [124902] trunk/Source/WebKit/chromium
Revision
124902
Author
[email protected]
Date
2012-08-07 11:55:54 -0700 (Tue, 07 Aug 2012)

Log Message

REGRESSION(r124865): It broke the ARM Chromium build
https://bugs.webkit.org/show_bug.cgi?id=93364

Patch by Joshua Bell <[email protected]> on 2012-08-07
Reviewed by Csaba Osztrogonác.

Mark large constant with LL to satisfy a picky compiler.

* tests/IDBLevelDBCodingTest.cpp:
(IDBLevelDBCoding::TEST):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (124901 => 124902)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-08-07 18:44:44 UTC (rev 124901)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-08-07 18:55:54 UTC (rev 124902)
@@ -1,3 +1,15 @@
+2012-08-07  Joshua Bell  <[email protected]>
+
+        REGRESSION(r124865): It broke the ARM Chromium build
+        https://bugs.webkit.org/show_bug.cgi?id=93364
+
+        Reviewed by Csaba Osztrogonác.
+
+        Mark large constant with LL to satisfy a picky compiler.
+
+        * tests/IDBLevelDBCodingTest.cpp:
+        (IDBLevelDBCoding::TEST):
+
 2012-08-07  Alexei Filippov  <[email protected]>
 
         Web Inspector: make the MemoryClassInfo class a not-template

Modified: trunk/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp (124901 => 124902)


--- trunk/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp	2012-08-07 18:44:44 UTC (rev 124901)
+++ trunk/Source/WebKit/chromium/tests/IDBLevelDBCodingTest.cpp	2012-08-07 18:55:54 UTC (rev 124902)
@@ -205,7 +205,7 @@
     EXPECT_EQ(static_cast<size_t>(2), encodeVarInt(255).size());
     EXPECT_EQ(static_cast<size_t>(2), encodeVarInt(256).size());
     EXPECT_EQ(static_cast<size_t>(5), encodeVarInt(0xffffffff).size());
-    EXPECT_EQ(static_cast<size_t>(8), encodeVarInt(0xfffffffffffff).size());
+    EXPECT_EQ(static_cast<size_t>(8), encodeVarInt(0xfffffffffffffLL).size());
     EXPECT_EQ(static_cast<size_t>(9), encodeVarInt(0x7fffffffffffffffLL).size());
 #ifdef NDEBUG
     EXPECT_EQ(static_cast<size_t>(10), encodeVarInt(-100).size());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to