remove failed tests (issues #612-616)

This commit is contained in:
Alexander Shishkov 2010-10-18 12:32:08 +00:00
parent e12e4798e0
commit 5d6467708c
2 changed files with 17 additions and 2 deletions

View File

@ -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. */

View 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. */