Commit 5d646770 authored by Alexander Shishkov's avatar Alexander Shishkov

remove failed tests (issues #612-616)

parent e12e4798
......@@ -43,9 +43,18 @@
CvTS test_system;
const char* blacklist[] =
{
"morph-ex",
"operations",
"stereobm",
"stereosgbm",
0
};
int main(int argC,char *argV[])
{
return test_system.run( argC, argV );
return test_system.run( argC, argV, blacklist );
}
/* End of file. */
......@@ -43,9 +43,15 @@
CvTS test_system;
const char* blacklist[] =
{
"kmeans",
0
};
int main( int argc, char** argv )
{
return test_system.run( argc, argv );
return test_system.run( argc, argv, blacklist );
}
/* End of file. */
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