Commit a22ee76b authored by Alexander Alekhin's avatar Alexander Alekhin

imgcodecs: exclude rle8.bmp from GDAL tests

GDAL message:
- ERROR 1: The BMP file is probably corrupted or too large. Image width = 480
parent 6a15910f
......@@ -110,7 +110,8 @@ INSTANTIATE_TEST_CASE_P(All, Imgcodecs_FileMode,
struct notForGDAL {
bool operator()(const string &name) const {
const string &ext = name.substr(name.size() - 3, 3);
return ext == "hdr" || ext == "dcm" || ext == "jp2";
return ext == "hdr" || ext == "dcm" || ext == "jp2" ||
name.find("rle8.bmp") != std::string::npos;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment