Only run image tests on Windows once
The Windows filesystem is case insensitive, so by asking for all .xxx files and then all .XXX files, we ended up processing every file twice. Bug: skia: Change-Id: I2b9e8bff988eefa32c40e58eef5b297cd0166231 Reviewed-on: https://skia-review.googlesource.com/152382 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
This commit is contained in:
parent
b1c77e4753
commit
00c5d0fd60
@ -111,14 +111,20 @@ bool CollectImages(SkCommandLineFlags::StringArray images, SkTArray<SkString>* o
|
||||
|
||||
static const char* const exts[] = {
|
||||
"bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
|
||||
#if !defined(SK_BUILD_FOR_WIN)
|
||||
"BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
|
||||
#endif
|
||||
#ifdef SK_HAS_HEIF_LIBRARY
|
||||
"heic",
|
||||
#if !defined(SK_BUILD_FOR_WIN)
|
||||
"HEIC",
|
||||
#endif
|
||||
#endif
|
||||
#ifdef SK_CODEC_DECODES_RAW
|
||||
"arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
|
||||
#if !defined(SK_BUILD_FOR_WIN)
|
||||
"ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW",
|
||||
#endif
|
||||
#endif
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user