1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 23:01:45 +08:00

Remove temporary files from accuracy tests.

This commit is contained in:
James Bowley
2022-10-26 17:50:36 +03:00
parent fbd6827e71
commit d3b58df32f

View File

@@ -482,6 +482,7 @@ CUDA_TEST_P(TransCode, H264ToH265)
ASSERT_FALSE(frame.empty()); ASSERT_FALSE(frame.empty());
} }
} }
ASSERT_EQ(0, remove(outputFile.c_str()));
} }
INSTANTIATE_TEST_CASE_P(CUDA_Codec, TransCode, ALL_DEVICES); INSTANTIATE_TEST_CASE_P(CUDA_Codec, TransCode, ALL_DEVICES);
@@ -562,6 +563,7 @@ CUDA_TEST_P(Write, Writer)
ASSERT_FALSE(frame.empty()); ASSERT_FALSE(frame.empty());
} }
} }
ASSERT_EQ(0, remove(outputFile.c_str()));
} }
#define DEVICE_SRC true, false #define DEVICE_SRC true, false
@@ -643,6 +645,7 @@ CUDA_TEST_P(EncoderParams, Writer)
} }
} }
} }
ASSERT_EQ(0, remove(outputFile.c_str()));
} }
INSTANTIATE_TEST_CASE_P(CUDA_Codec, EncoderParams, ALL_DEVICES); INSTANTIATE_TEST_CASE_P(CUDA_Codec, EncoderParams, ALL_DEVICES);