From ace0d4bad0bce656f1f54e27ea16559069282460 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Thu, 24 Oct 2013 23:31:00 +0400 Subject: [PATCH] hopefully, the last test failures are fixed now --- modules/imgproc/perf/perf_histogram.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/imgproc/perf/perf_histogram.cpp b/modules/imgproc/perf/perf_histogram.cpp index cd46c8dee..8d2a7989e 100644 --- a/modules/imgproc/perf/perf_histogram.cpp +++ b/modules/imgproc/perf/perf_histogram.cpp @@ -99,7 +99,8 @@ PERF_TEST_P(Size_Source, calcHist3d, SANITY_CHECK(hist); } -PERF_TEST_P(TestMatSize, equalizeHist, +#define MatSize TestMatSize +PERF_TEST_P(MatSize, equalizeHist, testing::Values(TYPICAL_MAT_SIZES) ) { @@ -115,6 +116,7 @@ PERF_TEST_P(TestMatSize, equalizeHist, SANITY_CHECK(destination); } +#undef MatSize typedef tr1::tuple Sz_ClipLimit_t; typedef TestBaseWithParam Sz_ClipLimit;