Output folder (#6383)
* [IE TESTS] Fix output folder for funcTests * remove extra
This commit is contained in:
@@ -19,8 +19,8 @@ int main(int argc, char *argv[]) {
|
||||
} else if (std::string(argv[i]) == "--help") {
|
||||
print_custom_help = true;
|
||||
} else if (std::string(argv[i]).find("--output_folder") != std::string::npos) {
|
||||
LayerTestsUtils::Summary::setOutputFolder(
|
||||
std::string(argv[i]).substr(std::string("--output_folder").length() + 1));
|
||||
auto outputFolderPath = std::string(argv[i]).substr(std::string("--output_folder").length() + 1);
|
||||
LayerTestsUtils::Summary::setOutputFolder(outputFolderPath);
|
||||
} else if (std::string(argv[i]).find("--report_unique_name") != std::string::npos) {
|
||||
LayerTestsUtils::Summary::setSaveReportWithUniqueName(true);
|
||||
} else if (std::string(argv[i]).find("--save_report_timeout") != std::string::npos) {
|
||||
|
||||
Reference in New Issue
Block a user