From 2e54a1f14f49ec411dc8a40eb025656fb426aec5 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Wed, 25 Jun 2025 17:37:46 +0000 Subject: [PATCH] videoio(test): re-enable FFmpeg tests on WIN32 - PR26800 --- modules/videoio/test/test_orientation.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/videoio/test/test_orientation.cpp b/modules/videoio/test/test_orientation.cpp index 7ebabc02b2..7bc64b0ebf 100644 --- a/modules/videoio/test/test_orientation.cpp +++ b/modules/videoio/test/test_orientation.cpp @@ -8,10 +8,6 @@ using namespace std; namespace opencv_test { namespace { -// PR: https://github.com/opencv/opencv/pull/26800 -// TODO: Enable the tests back on Windows after FFmpeg plugin rebuild -#ifndef _WIN32 - struct VideoCaptureAPITests: TestWithParam { void SetUp() @@ -89,6 +85,4 @@ inline static std::string VideoCaptureAPITests_name_printer(const testing::TestP INSTANTIATE_TEST_CASE_P(videoio, VideoCaptureAPITests, testing::ValuesIn(supported_backends), VideoCaptureAPITests_name_printer); -#endif // WIN32 - }} // namespace