From 7d500c2dcb6bdcec29e7629843156f7cf6120816 Mon Sep 17 00:00:00 2001 From: Dmitry Kurtaev Date: Mon, 22 Sep 2025 21:48:35 +0300 Subject: [PATCH] Skip WarpPerspective.Rotation --- modules/cudev/test/test_warp.cu | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/cudev/test/test_warp.cu b/modules/cudev/test/test_warp.cu index 72d0643148c..10f98ac1016 100644 --- a/modules/cudev/test/test_warp.cu +++ b/modules/cudev/test/test_warp.cu @@ -237,6 +237,9 @@ TEST(WarpAffine, Rotation) TEST(WarpPerspective, Rotation) { + if (cvtest::skipUnstableTests) + throw SkipTestException("Skip unstable test: https://github.com/opencv/opencv/issues/27813"); + const Size size = randomSize(100, 400); Mat src = randomMat(size, CV_32FC1, 0, 1);