aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/BadIcoTest.cpp
diff options
context:
space:
mode:
authorGravatar scroggo <scroggo@chromium.org>2015-07-10 09:32:09 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-10 09:32:09 -0700
commit139491fbaa6fc926456a246bb28e09848e0e48f5 (patch)
tree3cbb6ad0ae2db8c4d18a5be3a83d34ed4ea156d1 /tests/BadIcoTest.cpp
parent416e14f517f91e3d8b24ed99f5ca56fc5ec6ceee (diff)
Use the upstream version of libwebp, v0.4.3.
DEPS: Update to pull v0.4.3 of libwebp from upstream gyp/libwebp.gyp: Add new files, as referenced by the gyp file used by Chromium. resource/tests: Add regression tests for particular images. BUG=skia:3442 BUG=skia:3315 BUG=skia:3429 Committed: https://skia.googlesource.com/skia/+/3aa0fb4d80c76b559ff4b82d5e569993aea06da1 Review URL: https://codereview.chromium.org/1178013008
Diffstat (limited to 'tests/BadIcoTest.cpp')
-rw-r--r--tests/BadIcoTest.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/tests/BadIcoTest.cpp b/tests/BadIcoTest.cpp
index 9543d4b2f5..240de514c9 100644
--- a/tests/BadIcoTest.cpp
+++ b/tests/BadIcoTest.cpp
@@ -11,23 +11,25 @@
#include "SkImageDecoder.h"
#include "SkOSFile.h"
-DEF_TEST(BadIco, reporter) {
- const char* const badIcos [] = {
+DEF_TEST(BadImage, reporter) {
+ const char* const badImages [] = {
"sigabort_favicon.ico",
"sigsegv_favicon.ico",
"sigsegv_favicon_2.ico",
"ico_leak01.ico",
"ico_fuzz0.ico",
- "ico_fuzz1.ico"
+ "ico_fuzz1.ico",
+ "skbug3442.webp",
+ "skbug3429.webp",
};
- const char* badIcoFolder = "invalid_images";
+ const char* badImagesFolder = "invalid_images";
- SkString resourcePath = GetResourcePath(badIcoFolder);
+ SkString resourcePath = GetResourcePath(badImagesFolder);
SkBitmap bm;
- for (size_t i = 0; i < SK_ARRAY_COUNT(badIcos); ++i) {
- SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badIcos[i]);
+ for (size_t i = 0; i < SK_ARRAY_COUNT(badImages); ++i) {
+ SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badImages[i]);
bool success = SkImageDecoder::DecodeFile(fullPath.c_str(), &bm);
// These files are invalid, and should not decode. More importantly,
// though, we reached here without crashing.