From e8129429e96f3742b698318f5462f5d36e2ed64e Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Mon, 6 Jul 2020 14:52:52 +0300 Subject: [PATCH] imgcodecs: fix test build with disabled JPEG and PNG libs --- modules/imgcodecs/test/test_read_write.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/imgcodecs/test/test_read_write.cpp b/modules/imgcodecs/test/test_read_write.cpp index c53cc5a46b..985d5c110a 100644 --- a/modules/imgcodecs/test/test_read_write.cpp +++ b/modules/imgcodecs/test/test_read_write.cpp @@ -31,6 +31,7 @@ const tuple images[] = #ifdef HAVE_PNG make_tuple("../cv/shared/pic1.png", Size(400, 300)), #endif + make_tuple("../highgui/readwrite/ordinary.bmp", Size(480, 272)), }; TEST_P(Imgcodecs_Resize, imread_reduce_flags) -- GitLab