no message
This commit is contained in:
@@ -27,7 +27,7 @@ public class DownloadRepository extends ProcessPass {
|
||||
} else {
|
||||
Utils.CleanDirectory(dst);
|
||||
PerformScript("cd Repo\nsvn checkout " + Constants.REPOSITORY_AUTHENTICATION + " " + src + "\n"); //export
|
||||
FileUtils.write(loadedFile, "+");
|
||||
FileUtils.write(loadedFile, "");
|
||||
}
|
||||
}
|
||||
@Override
|
||||
|
||||
@@ -211,9 +211,6 @@ public class SPF_GetGraphFunctionPositions extends SilentSapforPass {
|
||||
}
|
||||
*/
|
||||
protected void unpack(String packed) throws Exception {
|
||||
//System.out.println("---");
|
||||
// System.out.println(packed);
|
||||
// UI.Info("+");
|
||||
String[] splited = packed.split("\\|");
|
||||
int j = 0;
|
||||
//-
|
||||
@@ -266,8 +263,6 @@ public class SPF_GetGraphFunctionPositions extends SilentSapforPass {
|
||||
));
|
||||
}
|
||||
}
|
||||
//---
|
||||
//UI.Info("+");
|
||||
}
|
||||
@Override
|
||||
protected void body() throws Exception {
|
||||
|
||||
@@ -47,11 +47,6 @@ public class SPF_GetGraphFunctions extends SapforAnalysis {
|
||||
}
|
||||
@Override
|
||||
protected void unpack(String packed) throws Exception {
|
||||
// Utils.CreateTempFile("DEBUG1.txt", Utils.Brackets(packed));
|
||||
// System.out.println("---");
|
||||
// System.out.println(packed);
|
||||
// UI.Info("+");
|
||||
|
||||
LinkedHashMap<String, FuncInfo> declarated_functions = new LinkedHashMap<>();
|
||||
String[] splited = packed.split("\\|");
|
||||
Index idx = new Index();
|
||||
|
||||
@@ -15,7 +15,6 @@ public class SPF_GetMaxMinBlockDistribution extends SilentSapforPass {
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
if (super.canStart(args)){
|
||||
UI.Info("+");
|
||||
SPF_ParseFilesWithOrder.silent = true;
|
||||
return (passes.get(PassCode_2021.SPF_ParseFilesWithOrder).isDone() || passes.get(PassCode_2021.SPF_ParseFilesWithOrder).Do());
|
||||
}
|
||||
|
||||
@@ -74,9 +74,7 @@ public class SPF_InlineProceduresH extends SapforTransformation {
|
||||
}
|
||||
Options = Utils.toU(String.join("|", Result));
|
||||
System.out.println(Utils.Brackets(Options));
|
||||
// UI.Info("+");
|
||||
Global.changeSetting(SettingName.PARSE_FOR_INLINE, "1");
|
||||
// Pass_2021.passes.get(PassCode_2021.UpdateSetting).Do(SettingName.PARSE_FOR_INLINE, "1");
|
||||
SPF_ParseFilesWithOrder.silent = true;
|
||||
return passes.get(PassCode_2021.SPF_ParseFilesWithOrder).Do();
|
||||
}
|
||||
|
||||
@@ -979,7 +979,7 @@ public enum PassCode_2021 {
|
||||
name = "GET_MIN_MAX_BLOCK_DIST";
|
||||
break;
|
||||
case SPF_InsertIncludesPass:
|
||||
name = "INSERT_INCLUDES"+" -includeAll";
|
||||
name = "INSERT_INCLUDES -includeAll";
|
||||
break;
|
||||
}
|
||||
return p + " " + name;
|
||||
|
||||
@@ -51,8 +51,6 @@ public abstract class RepositoryServerSSHPass extends ConnectionPass {
|
||||
new Date().toString()
|
||||
);
|
||||
user.connection.sftpChannel.rename(STARTED.full_name, StartLog.full_name);
|
||||
|
||||
user.connection.writeToFile("+", StartLog);
|
||||
//--
|
||||
RemoteFile[] files = new RemoteFile[]{
|
||||
new RemoteFile(serverHome, Constants.script),
|
||||
@@ -65,13 +63,11 @@ public abstract class RepositoryServerSSHPass extends ConnectionPass {
|
||||
}
|
||||
}
|
||||
protected void ShutdownServer() throws Exception {
|
||||
//--
|
||||
// UI.Info("+");
|
||||
RemoteFile INTERRUPT = new RemoteFile(serverHome, Constants.INTERRUPT);
|
||||
RemoteFile ABORTED = new RemoteFile(serverHome, Constants.ABORTED);
|
||||
//--
|
||||
ShowMessage1("Создание файла INTERRUPT..");
|
||||
user.connection.writeToFile("+", INTERRUPT);
|
||||
user.connection.writeToFile("", INTERRUPT);
|
||||
ShowMessage1("Ожидание остановки сервера тестирования");
|
||||
do {
|
||||
Utils.sleep(1000);
|
||||
|
||||
Reference in New Issue
Block a user