no message

This commit is contained in:
2024-10-07 22:04:09 +03:00
parent 7fac84740d
commit 17c0bf7eb3
103 changed files with 560 additions and 491 deletions

View File

@@ -1,7 +1,6 @@
package Visual_DVM_2021.Passes.All;
import Common.Utils.CommonUtils;
import Common_old.Current;
import _VisualDVM.Global;
import Common_old.Utils.Utils;
import GlobalData.Module.Module;
import ProjectData.Files.DBProjectFile;
@@ -17,7 +16,7 @@ public class GCOV extends Precompilation {
return new File(workspace, getBinaryName());
}
protected String getBinaryName() {
return Global.isWindows ? "0.exe" : "0";
return CommonUtils.isWindows ? "0.exe" : "0";
}
@Override
public boolean needsConfirmations() {
@@ -68,7 +67,7 @@ public class GCOV extends Precompilation {
if (getBinary().exists()) {
ShowMessage1("Запуск для GCOV");
name_to_kill = "0.exe";
StartProcess(Global.isWindows?"0.exe":"./0", target.run_maxtime);
StartProcess(CommonUtils.isWindows?"0.exe":"./0", target.run_maxtime);
target.updateRunOut(output);
} else {
Log.Writeln_("Не удалось собрать проект.");
@@ -94,7 +93,7 @@ public class GCOV extends Precompilation {
target.db.Update(file);
File targetGcov = Paths.get(
target.getGCOVDirectory().getAbsolutePath(),
(Global.isWindows?file.name:file.getUnixName()) + ".gcov").toFile();
(CommonUtils.isWindows?file.name:file.getUnixName()) + ".gcov").toFile();
Files.copy(gcov.toPath(), targetGcov.toPath(), StandardCopyOption.REPLACE_EXISTING);
}
}