Skip to content

Commit 4cfea8e

Browse files
debug
1 parent 5b3c00a commit 4cfea8e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

interface-test/src/test/java/coursierapi/test/JvmManagerTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ public void simple() throws IOException, InterruptedException {
4646
.redirectErrorStream(true);
4747
Process p = b.start();
4848
byte[] rawOutput = readAllBytes(p.getInputStream());
49+
System.err.println(javaBin.getAbsolutePath().toString() + "-version output:");
50+
System.err.write(rawOutput);
4951
String output = new String(rawOutput);
5052
int exitCode = p.waitFor();
5153
if (exitCode != 0)

0 commit comments

Comments
 (0)