1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

ts: add BigData tests category (skipped by default)

Pass --test_bigdata to allow launching of "BigData" tests.
This commit is contained in:
Alexander Alekhin
2018-05-15 14:35:55 +03:00
parent e0dbe5cfcc
commit 6582afcdbb
2 changed files with 34 additions and 2 deletions
+3
View File
@@ -699,6 +699,7 @@ void checkIppStatus()
}
bool skipUnstableTests = false;
bool runBigDataTests = false;
int testThreads = 0;
void parseCustomOptions(int argc, char **argv)
@@ -708,6 +709,7 @@ void parseCustomOptions(int argc, char **argv)
"{ test_seed |809564 |seed for random numbers generator }"
"{ test_threads |-1 |the number of worker threads, if parallel execution is enabled}"
"{ skip_unstable |false |skip unstable tests }"
"{ test_bigdata |false |run BigData tests (>=2Gb) }"
"{ h help |false |print help info }";
cv::CommandLineParser parser(argc, argv, command_line_keys);
@@ -730,6 +732,7 @@ void parseCustomOptions(int argc, char **argv)
testThreads = parser.get<int>("test_threads");
skipUnstableTests = parser.get<bool>("skip_unstable");
runBigDataTests = parser.get<bool>("test_bigdata");
}