commit: 9f9f9893fd1692b28fc3793356a0d97586444180 Author: Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com> AuthorDate: Wed May 14 16:20:43 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri May 16 11:27:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f9f9893
media-libs/opencv: fix USE="qt6 wayland" test regression Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42091 Signed-off-by: Sam James <sam <AT> gentoo.org> media-libs/opencv/opencv-4.11.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/media-libs/opencv/opencv-4.11.0.ebuild b/media-libs/opencv/opencv-4.11.0.ebuild index 237485b74dc8..d9d2e68b02ab 100644 --- a/media-libs/opencv/opencv-4.11.0.ebuild +++ b/media-libs/opencv/opencv-4.11.0.ebuild @@ -1135,6 +1135,15 @@ multilib_src_test() { addpredict /dev/fuse fi + if use wayland; then + if use gtk3 || use qt6; then + local -x OPENCV_SKIP_TESTS_highgui=( + 'Highgui_GUI.regression' + 'Highgui_GUI.small_width_image' + ) + fi + fi + if multilib_native_use cuda; then local -x OPENCV_SKIP_TESTS_cudaoptflow=( 'CUDA_OptFlow/BroxOpticalFlow.Regression/0'
