made more demonstrative message about test fails

This commit is contained in:
Ilya Lavrenov
2013-10-19 01:17:46 +04:00
parent 4cbf0cb31e
commit e9cef2990e
3 changed files with 44 additions and 46 deletions

View File

@@ -54,7 +54,7 @@ using namespace std;
#define MAX_CHANNELS 4
PARAM_TEST_CASE(MergeTestBase, MatType, int, bool)
PARAM_TEST_CASE(MergeTestBase, MatDepth, Channels, bool)
{
int type;
int channels;
@@ -254,11 +254,11 @@ OCL_TEST_P(Split, Accuracy)
INSTANTIATE_TEST_CASE_P(SplitMerge, Merge, Combine(
Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F), Range(1, 5), Bool()));
Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F), Values(1, 2, 3, 4), Bool()));
INSTANTIATE_TEST_CASE_P(SplitMerge, Split , Combine(
Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F), Range(1, 5), Bool()));
Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F), Values(1, 2, 3, 4), Bool()));
#endif // HAVE_OPENCL