Дополнил выходные файлы. Различил текст о задачах на компиляцию и о задачах на запуск. Убрал печать состояний задач, и времени.

This commit is contained in:
2023-12-04 16:26:13 +03:00
parent c37f3d9e70
commit 7b28d1a84d
6 changed files with 18 additions and 46 deletions

View File

@@ -96,8 +96,10 @@ public:
virtual String copyResults(const String& pathRes) {
String resultPath = Task::copyResults(pathRes);
if (Utils::Exists(workspace + "/sts.gz+")) {
String dvm_start = String::DQuotes(dvm_drv) + " pa " + String::DQuotes(String(getId()) + "/sts.gz+") + " " + String::DQuotes(resultPath + "/statistic.txt");
String stsPath(resultPath + "/statistic.txt");
String dvm_start = String::DQuotes(dvm_drv) + " pa " + String::DQuotes(String(getId()) + "/sts.gz+") + " " + String::DQuotes(stsPath);
system(dvm_start.getCharArray());
while (!Utils::Exists(stsPath));
}
return resultPath;
}