Output folder (#6383)

* [IE TESTS] Fix output folder for funcTests

* remove extra
This commit is contained in:
Irina Efode
2021-06-28 18:48:29 +03:00
committed by GitHub
parent d9b6c43201
commit 7580bd3b5d

View File

@@ -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) {