no message
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user