Skip to content
Snippets Groups Projects
Commit 051703ba authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Add trace for debug on CI platform

parent ad3fe514
No related branches found
No related tags found
No related merge requests found
Pipeline #487 failed
...@@ -235,7 +235,8 @@ public class DumpManagerTest { ...@@ -235,7 +235,8 @@ public class DumpManagerTest {
public void testWriteError() throws URISyntaxException, IOException { public void testWriteError() throws URISyntaxException, IOException {
try { try {
File dump = tempFolder.newFile(); File dump = tempFolder.newFile();
dump.setReadOnly(); boolean isSuccess = dump.setReadOnly();
System.out.println("##### File created in read only success= " + isSuccess);
DumpManager.activate(dump); DumpManager.activate(dump);
Assert.fail("an exception should have been thrown"); Assert.fail("an exception should have been thrown");
} catch (RuggedException re) { } catch (RuggedException re) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment