mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 23:33:05 +04:00
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
This commit is contained in:
@@ -125,6 +125,20 @@ bool required_opencv_test_namespace = false; // compilation check for non-refac
|
||||
namespace cvtest
|
||||
{
|
||||
|
||||
details::SkipTestExceptionBase::SkipTestExceptionBase(bool handlingTags)
|
||||
{
|
||||
if (!handlingTags)
|
||||
{
|
||||
testTagIncreaseSkipCount("skip_other", true, true);
|
||||
}
|
||||
}
|
||||
details::SkipTestExceptionBase::SkipTestExceptionBase(const cv::String& message, bool handlingTags)
|
||||
{
|
||||
if (!handlingTags)
|
||||
testTagIncreaseSkipCount("skip_other", true, true);
|
||||
this->msg = message;
|
||||
}
|
||||
|
||||
uint64 param_seed = 0x12345678; // real value is passed via parseCustomOptions function
|
||||
|
||||
static std::string path_join(const std::string& prefix, const std::string& subpath)
|
||||
@@ -850,6 +864,17 @@ void testTearDown()
|
||||
}
|
||||
}
|
||||
|
||||
bool checkBigDataTests()
|
||||
{
|
||||
if (!runBigDataTests)
|
||||
{
|
||||
testTagIncreaseSkipCount("skip_bigdata", true, true);
|
||||
printf("[ SKIP ] BigData tests are disabled\n");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void parseCustomOptions(int argc, char **argv)
|
||||
{
|
||||
const string command_line_keys = string(
|
||||
|
||||
Reference in New Issue
Block a user