Merge pull request #1620 from SpecLad:record-build-type
This commit is contained in:
commit
7fb18a2311
@ -2965,6 +2965,16 @@ void printVersionInfo(bool useStdOut)
|
|||||||
if(useStdOut) std::cout << "Inner VCS version: " << ver << std::endl;
|
if(useStdOut) std::cout << "Inner VCS version: " << ver << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char * build_type =
|
||||||
|
#ifdef _DEBUG
|
||||||
|
"debug";
|
||||||
|
#else
|
||||||
|
"release";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
::testing::Test::RecordProperty("cv_build_type", build_type);
|
||||||
|
if (useStdOut) std::cout << "Build type: " << build_type << std::endl;
|
||||||
|
|
||||||
const char* parallel_framework = currentParallelFramework();
|
const char* parallel_framework = currentParallelFramework();
|
||||||
|
|
||||||
if (parallel_framework) {
|
if (parallel_framework) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user