Skip to content

Commit

Permalink
Merge pull request opencv#2249 from jet47:gpu-tests-disable
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Donchenko authored and OpenCV Buildbot committed Jan 31, 2014
2 parents a518d7a + 952027a commit 2bef73c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions modules/gpu/perf/perf_imgproc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ PERF_TEST_P(Sz, ImgProc_ColumnSum,

DEF_PARAM_TEST(Image_AppertureSz_L2gradient, string, int, bool);

PERF_TEST_P(Image_AppertureSz_L2gradient, ImgProc_Canny,
PERF_TEST_P(Image_AppertureSz_L2gradient, DISABLED_ImgProc_Canny,
Combine(Values("perf/800x600.png", "perf/1280x1024.png", "perf/1680x1050.png"),
Values(3, 5),
Bool()))
Expand Down Expand Up @@ -1777,7 +1777,7 @@ PERF_TEST_P(Image, ImgProc_HoughLinesP,

DEF_PARAM_TEST(Sz_Dp_MinDist, cv::Size, float, float);

PERF_TEST_P(Sz_Dp_MinDist, ImgProc_HoughCircles,
PERF_TEST_P(Sz_Dp_MinDist, DISABLED_ImgProc_HoughCircles,
Combine(GPU_TYPICAL_MAT_SIZES,
Values(1.0f, 2.0f, 4.0f),
Values(1.0f)))
Expand Down
8 changes: 4 additions & 4 deletions modules/gpu/test/test_color.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ GPU_TEST_P(CvtColor, YCrCb42RGBA)
EXPECT_MAT_NEAR(dst_gold, dst, 1e-5);
}

GPU_TEST_P(CvtColor, BGR2HSV)
GPU_TEST_P(CvtColor, DISABLED_BGR2HSV)
{
if (depth == CV_16U)
return;
Expand All @@ -856,7 +856,7 @@ GPU_TEST_P(CvtColor, BGR2HSV)
EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1);
}

GPU_TEST_P(CvtColor, RGB2HSV)
GPU_TEST_P(CvtColor, DISABLED_RGB2HSV)
{
if (depth == CV_16U)
return;
Expand All @@ -872,7 +872,7 @@ GPU_TEST_P(CvtColor, RGB2HSV)
EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1);
}

GPU_TEST_P(CvtColor, RGB2HSV4)
GPU_TEST_P(CvtColor, DISABLED_RGB2HSV4)
{
if (depth == CV_16U)
return;
Expand All @@ -896,7 +896,7 @@ GPU_TEST_P(CvtColor, RGB2HSV4)
EXPECT_MAT_NEAR(dst_gold, h_dst, depth == CV_32F ? 1e-2 : 1);
}

GPU_TEST_P(CvtColor, RGBA2HSV4)
GPU_TEST_P(CvtColor, DISABLED_RGBA2HSV4)
{
if (depth == CV_16U)
return;
Expand Down
2 changes: 1 addition & 1 deletion modules/gpu/test/test_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ PARAM_TEST_CASE(Subtract_Array, cv::gpu::DeviceInfo, cv::Size, std::pair<MatDept
}
};

GPU_TEST_P(Subtract_Array, Accuracy)
GPU_TEST_P(Subtract_Array, DISABLED_Accuracy)
{
cv::Mat mat1 = randomMat(size, stype);
cv::Mat mat2 = randomMat(size, stype);
Expand Down

0 comments on commit 2bef73c

Please sign in to comment.