Title: [144181] trunk/Source/WebKit/chromium
Revision
144181
Author
[email protected]
Date
2013-02-27 07:11:19 -0800 (Wed, 27 Feb 2013)

Log Message

[chromium] GIFImageDecoderTest.parseAndDecodeByteByByte failing on Android
https://bugs.webkit.org/show_bug.cgi?id=110922

Unreviewed build fix.

* tests/GIFImageDecoderTest.cpp:
(WebKit):
(WebKit::TEST): Disable the entire test on Android.

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (144180 => 144181)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-27 15:00:34 UTC (rev 144180)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-27 15:11:19 UTC (rev 144181)
@@ -1,3 +1,14 @@
+2013-02-27  Stephen Chenney  <[email protected]>
+
+        [chromium] GIFImageDecoderTest.parseAndDecodeByteByByte failing on Android
+        https://bugs.webkit.org/show_bug.cgi?id=110922
+
+        Unreviewed build fix.
+
+        * tests/GIFImageDecoderTest.cpp:
+        (WebKit):
+        (WebKit::TEST): Disable the entire test on Android.
+
 2013-02-27  Seigo Nonaka  <[email protected]>
 
         [Chromium] Should not return WebTextInputTypeNone for date input element.

Modified: trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp (144180 => 144181)


--- trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp	2013-02-27 15:00:34 UTC (rev 144180)
+++ trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp	2013-02-27 15:11:19 UTC (rev 144181)
@@ -47,6 +47,8 @@
 
 namespace {
 
+#if !OS(ANDROID)
+
 static PassRefPtr<SharedBuffer> readFile(const char* fileName)
 {
     String filePath = Platform::current()->unitTestSupport()->webKitRootDir();
@@ -87,8 +89,6 @@
     EXPECT_EQ(cAnimationLoopInfinite, decoder->repetitionCount());
 }
 
-#if !OS(ANDROID)
-
 TEST(GIFImageDecoderTest, parseAndDecode)
 {
     OwnPtr<GIFImageDecoder> decoder(adoptPtr(new GIFImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied)));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to