Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/javaTests/src/org/criu/java/tests/CheckpointRestore.java')
-rw-r--r--test/javaTests/src/org/criu/java/tests/CheckpointRestore.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/javaTests/src/org/criu/java/tests/CheckpointRestore.java b/test/javaTests/src/org/criu/java/tests/CheckpointRestore.java
index 968488191..b848c9938 100644
--- a/test/javaTests/src/org/criu/java/tests/CheckpointRestore.java
+++ b/test/javaTests/src/org/criu/java/tests/CheckpointRestore.java
@@ -77,7 +77,7 @@ public class CheckpointRestore {
private void testSetup(String testName) throws IOException {
Path testFolderPath = Paths.get(outputFolder + testName + "/");
if (!Files.exists(testFolderPath)) {
- System.out.println("Test Folder does not exist creating it");
+ System.out.println("Creating the test folder");
Files.createDirectory(testFolderPath);
}
}
@@ -245,7 +245,7 @@ public class CheckpointRestore {
Assert.assertNotEquals(currentState, Helper.STATE_TERMINATE, testName + ": ERROR: Checkpoint-Restore failed");
Assert.assertNotEquals(currentState, Helper.STATE_FAIL, testName + ": ERROR: Test Failed, Check Log for details");
Assert.assertEquals(currentState, Helper.STATE_PASS, testName + " ERROR: Unexpected State of Mapped Buffer");
- System.out.println("-----" + "PASS" + "-----");
+ System.out.println("----- " + "PASS" + " -----");
}