Closedown

This commit is contained in:
boccioli_m
2017-08-30 15:34:46 +02:00
parent 8eddbf5229
commit 4b2efb13b6
2 changed files with 7 additions and 6 deletions

View File

@@ -2044,11 +2044,13 @@ public class TestingList extends Panel {
showResult(sDeviceName, sTestPath, "Test running", TestStatus.RUNNING.toString());
//launch the test
if (!mParameters.isEmpty()) {
logger.log(Level.INFO, "Running test '" + sTestName + "' with the following parameters: " + mParameters.toString());
System.out.println("Running test '" + sTestName + "' with the following parameters: " + mParameters.toString());
String msg = "Running test '" + sTestName + "' for device '" + sDeviceName + "' with the following parameters: " + mParameters.toString();
logger.log(Level.INFO, msg);
System.out.println(msg);
} else {
logger.log(Level.INFO, "Running Test '" + sTestName + "'. No parameters found.");
System.out.println("Running test '" + sTestName + "'. No parameters found.");
String msg = "Running Test '" + sTestName + "'. No parameters found.";
logger.log(Level.INFO, msg);
System.out.println(msg);
}
args2.put(sTestID, testArgs);
hTests = args2;
@@ -2068,7 +2070,6 @@ public class TestingList extends Panel {
final String sParallelizeEnd = "'),))";
String sParallelizeArguments;
try {
//System.out.println("A0.1");
String sParallelizeCommand = "parallelize(";
int i = 0;
int iTotalEntries = hTests.entrySet().size();