Commit 1704aea6 authored by Alexander Alekhin's avatar Alexander Alekhin

tapi: enable some disabled tests

parent 4eef486a
...@@ -175,11 +175,11 @@ TEST_P(UMatBasicTests, base) ...@@ -175,11 +175,11 @@ TEST_P(UMatBasicTests, base)
TEST_P(UMatBasicTests, DISABLED_copyTo) TEST_P(UMatBasicTests, DISABLED_copyTo)
{ {
UMat roi_ua;
Mat roi_a;
int i; int i;
if(useRoi) if(useRoi)
{ {
UMat roi_ua;
Mat roi_a;
roi_ua = UMat(ua, roi); roi_ua = UMat(ua, roi);
roi_a = Mat(a, roi); roi_a = Mat(a, roi);
roi_a.copyTo(roi_ua); roi_a.copyTo(roi_ua);
...@@ -230,7 +230,7 @@ TEST_P(UMatBasicTests, DISABLED_copyTo) ...@@ -230,7 +230,7 @@ TEST_P(UMatBasicTests, DISABLED_copyTo)
} }
} }
TEST_P(UMatBasicTests, DISABLED_GetUMat) TEST_P(UMatBasicTests, GetUMat)
{ {
if(useRoi) if(useRoi)
{ {
...@@ -284,7 +284,7 @@ PARAM_TEST_CASE(UMatTestReshape, int, int, Size, bool) ...@@ -284,7 +284,7 @@ PARAM_TEST_CASE(UMatTestReshape, int, int, Size, bool)
} }
}; };
TEST_P(UMatTestReshape, DISABLED_reshape) TEST_P(UMatTestReshape, reshape)
{ {
a = randomMat(size,type, -100, 100); a = randomMat(size,type, -100, 100);
a.copyTo(ua); a.copyTo(ua);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment