очистка отладочной печати. тоже кое-что накопилось.
This commit is contained in:
@@ -47,27 +47,21 @@ public class RemoteDVMTestingPlanner extends DVMTestingPlanner {
|
||||
//----
|
||||
@Override
|
||||
protected void TestsSynchronize() throws Exception {
|
||||
System.out.println("--");
|
||||
testingPackage.readJson();
|
||||
System.out.println("+");
|
||||
LinkedHashMap<Integer, File> tests = getTestsFromJson();
|
||||
//синхронизировать их.
|
||||
for (int test_id : tests.keySet()) {
|
||||
System.out.println("test=" + test_id);
|
||||
File test = tests.get(test_id);
|
||||
RemoteFile test_dst = new RemoteFile(testingPackage.user_workspace + "/projects/" + test_id, true);
|
||||
user.connection.MKDIR(test_dst);
|
||||
user.connection.SynchronizeSubDirsR(test, test_dst);
|
||||
}
|
||||
System.out.println("++");
|
||||
}
|
||||
@Override
|
||||
protected void PackageWorkspaceCreation() throws Exception {
|
||||
System.out.println("package workspace creation");
|
||||
if (!CheckModules()) {
|
||||
return;
|
||||
}
|
||||
System.out.println("modules checked");
|
||||
//--
|
||||
testingPackage.readJson();
|
||||
//--
|
||||
|
||||
Reference in New Issue
Block a user