1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Fix sanity checks in highgui module

This commit is contained in:
Andrey Kamaev
2012-10-09 19:39:03 +04:00
parent 4a53199e7a
commit 8ebd04cbf9
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -23,5 +23,6 @@ PERF_TEST_P(VideoCapture_Reading, ReadFile,
TEST_CYCLE() cap.open(filename);
SANITY_CHECK(cap.isOpened());
bool dummy = cap.isOpened();
SANITY_CHECK(dummy);
}
+2 -1
View File
@@ -25,5 +25,6 @@ PERF_TEST_P(VideoWriter_Writing, WriteFrame,
TEST_CYCLE() { Mat image = imread(filename, 1); writer << image; }
SANITY_CHECK(writer.isOpened());
bool dummy = writer.isOpened();
SANITY_CHECK(dummy);
}