Fix sanity checks in highgui module
This commit is contained in:
@@ -23,5 +23,6 @@ PERF_TEST_P(VideoCapture_Reading, ReadFile,
|
|||||||
|
|
||||||
TEST_CYCLE() cap.open(filename);
|
TEST_CYCLE() cap.open(filename);
|
||||||
|
|
||||||
SANITY_CHECK(cap.isOpened());
|
bool dummy = cap.isOpened();
|
||||||
|
SANITY_CHECK(dummy);
|
||||||
}
|
}
|
||||||
|
@@ -25,5 +25,6 @@ PERF_TEST_P(VideoWriter_Writing, WriteFrame,
|
|||||||
|
|
||||||
TEST_CYCLE() { Mat image = imread(filename, 1); writer << image; }
|
TEST_CYCLE() { Mat image = imread(filename, 1); writer << image; }
|
||||||
|
|
||||||
SANITY_CHECK(writer.isOpened());
|
bool dummy = writer.isOpened();
|
||||||
|
SANITY_CHECK(dummy);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user