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

Unified Diff: ios/web/public/image_fetcher/webp_decoder_unittest.mm

Issue 2665673002: Re-enable WebP tests (Closed)
Patch Set: Created 3 years, 11 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 | « ios/web/public/image_fetcher/image_data_fetcher_unittest.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/public/image_fetcher/webp_decoder_unittest.mm
diff --git a/ios/web/public/image_fetcher/webp_decoder_unittest.mm b/ios/web/public/image_fetcher/webp_decoder_unittest.mm
index fdaae2e9ccf1a1cad63409f226c6f91c80960767..64d767c3f81f99b8b54241b367337d31706b44f1 100644
--- a/ios/web/public/image_fetcher/webp_decoder_unittest.mm
+++ b/ios/web/public/image_fetcher/webp_decoder_unittest.mm
@@ -168,11 +168,6 @@ class WebpDecoderTest : public testing::Test {
} // namespace
TEST_F(WebpDecoderTest, DecodeToJpeg) {
-// TODO(droger): This test fails on iOS 9 x64 devices. http://crbug.com/523235
-#if defined(OS_IOS) && defined(ARCH_CPU_ARM64) && !TARGET_IPHONE_SIMULATOR
- if (base::ios::IsRunningOnIOS9OrLater())
- return;
-#endif
// Load a WebP image from disk.
base::scoped_nsobject<NSData> webp_image(
LoadImage(base::FilePath("test.webp")));
@@ -192,11 +187,6 @@ TEST_F(WebpDecoderTest, DecodeToJpeg) {
}
TEST_F(WebpDecoderTest, DecodeToPng) {
-// TODO(droger): This test fails on iOS 9 x64 devices. http://crbug.com/523235
-#if defined(OS_IOS) && defined(ARCH_CPU_ARM64) && !TARGET_IPHONE_SIMULATOR
- if (base::ios::IsRunningOnIOS9OrLater())
- return;
-#endif
// Load a WebP image from disk.
base::scoped_nsobject<NSData> webp_image(
LoadImage(base::FilePath("test_alpha.webp")));
@@ -216,11 +206,6 @@ TEST_F(WebpDecoderTest, DecodeToPng) {
}
TEST_F(WebpDecoderTest, DecodeToTiff) {
-// TODO(droger): This test fails on iOS 9 x64 devices. http://crbug.com/523235
-#if defined(OS_IOS) && defined(ARCH_CPU_ARM64) && !TARGET_IPHONE_SIMULATOR
- if (base::ios::IsRunningOnIOS9OrLater())
- return;
-#endif
// Load a WebP image from disk.
base::scoped_nsobject<NSData> webp_image(
LoadImage(base::FilePath("test_small.webp")));
@@ -240,11 +225,6 @@ TEST_F(WebpDecoderTest, DecodeToTiff) {
}
TEST_F(WebpDecoderTest, StreamedDecode) {
-// TODO(droger): This test fails on iOS 9 x64 devices. http://crbug.com/523235
-#if defined(OS_IOS) && defined(ARCH_CPU_ARM64) && !TARGET_IPHONE_SIMULATOR
- if (base::ios::IsRunningOnIOS9OrLater())
- return;
-#endif
// Load a WebP image from disk.
base::scoped_nsobject<NSData> webp_image(
LoadImage(base::FilePath("test.webp")));
« no previous file with comments | « ios/web/public/image_fetcher/image_data_fetcher_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698