no message

This commit is contained in:
2024-10-14 15:19:13 +03:00
parent 8eef367bd4
commit 5e09fb44ea
634 changed files with 3751 additions and 3263 deletions

View File

@@ -66,7 +66,7 @@ public class GCOV extends Precompilation {
if (getBinary().exists()) {
ShowMessage1("Запуск для GCOV");
name_to_kill = "0.exe";
StartProcess(Utils_.isWindows()?"0.exe":"./0", target.run_maxtime);
StartProcess(Utils_.isWindows() ? "0.exe" : "./0", target.run_maxtime);
target.updateRunOut(output);
} else {
Log.Writeln_("Не удалось собрать проект.");
@@ -92,7 +92,7 @@ public class GCOV extends Precompilation {
target.db.Update(file);
File targetGcov = Paths.get(
target.getGCOVDirectory().getAbsolutePath(),
(Utils_.isWindows()?file.name:file.getUnixName()) + ".gcov").toFile();
(Utils_.isWindows() ? file.name : file.getUnixName()) + ".gcov").toFile();
Files.copy(gcov.toPath(), targetGcov.toPath(), StandardCopyOption.REPLACE_EXISTING);
}
}
@@ -120,7 +120,7 @@ public class GCOV extends Precompilation {
}
@Override
protected void performDone() throws Exception {
// target.updateGCOV_status(1);
// target.updateGCOV_status(1);
}
@Override
protected void FocusResult() {