From 64a43fb04f06bb66c673155f6443bdf6fdc1ca50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Novomesk=C3=BD?= Date: Wed, 12 Mar 2025 16:17:59 +0100 Subject: [PATCH] readtest: special handling for HEIF format --- autotests/readtest.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/autotests/readtest.cpp b/autotests/readtest.cpp index 83beb3a..061da8e 100644 --- a/autotests/readtest.cpp +++ b/autotests/readtest.cpp @@ -332,7 +332,12 @@ int main(int argc, char **argv) OptionTest optionTest; if (!optionTest.store(&inputReader)) { QTextStream(stdout) << "FAIL : " << fi.fileName() << ": error while reading options\n"; - ++failed; + if (format == "heif") { + // libheif + ffmpeg decoder is unable to load all HEIF files. + ++skipped; + } else { + ++failed; + } continue; }