fix недоделки с одиночным запуском. стояла ожидающая команда. v++

This commit is contained in:
2024-04-03 00:01:52 +03:00
parent 48f7845564
commit c40d6fbbfc
6 changed files with 15 additions and 47 deletions

View File

@@ -182,7 +182,7 @@ public class DVMTestingPlanner extends TestingPlanner<DVMPackage> {
@Override
protected void PackageStart() throws Exception {
String plannerStartCommand = String.join(" ", "nohup", Utils.DQuotes(getPlanner()), Utils.DQuotes(user.workspace), Utils.DQuotes(packageRemoteWorkspace.full_name), Utils.DQuotes(testingPackage.kernels), Utils.DQuotes(testingPackage.drv), "&");
user.connection.CommandNoRead("ulimit -s unlimited",plannerStartCommand);
user.connection.CommandNoWait("ulimit -s unlimited",plannerStartCommand);
RemoteFile PID = new RemoteFile(packageRemoteWorkspace, "PID");
RemoteFile STARTED = new RemoteFile(packageRemoteWorkspace, "STARTED");
while (!user.connection.Exists(STARTED)) {