| Index: tests/BadIcoTest.cpp
|
| diff --git a/tests/BadIcoTest.cpp b/tests/BadIcoTest.cpp
|
| index 240de514c981f2881d9ee356813fe2d4f760e87d..9543d4b2f5fcc1cb21c207f9fdbacb6cd049abf6 100644
|
| --- a/tests/BadIcoTest.cpp
|
| +++ b/tests/BadIcoTest.cpp
|
| @@ -11,25 +11,23 @@
|
| #include "SkImageDecoder.h"
|
| #include "SkOSFile.h"
|
|
|
| -DEF_TEST(BadImage, reporter) {
|
| - const char* const badImages [] = {
|
| +DEF_TEST(BadIco, reporter) {
|
| + const char* const badIcos [] = {
|
| "sigabort_favicon.ico",
|
| "sigsegv_favicon.ico",
|
| "sigsegv_favicon_2.ico",
|
| "ico_leak01.ico",
|
| "ico_fuzz0.ico",
|
| - "ico_fuzz1.ico",
|
| - "skbug3442.webp",
|
| - "skbug3429.webp",
|
| + "ico_fuzz1.ico"
|
| };
|
|
|
| - const char* badImagesFolder = "invalid_images";
|
| + const char* badIcoFolder = "invalid_images";
|
|
|
| - SkString resourcePath = GetResourcePath(badImagesFolder);
|
| + SkString resourcePath = GetResourcePath(badIcoFolder);
|
|
|
| SkBitmap bm;
|
| - for (size_t i = 0; i < SK_ARRAY_COUNT(badImages); ++i) {
|
| - SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badImages[i]);
|
| + for (size_t i = 0; i < SK_ARRAY_COUNT(badIcos); ++i) {
|
| + SkString fullPath = SkOSPath::Join(resourcePath.c_str(), badIcos[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.
|
|
|