Skip to content

Commit

Permalink
TS-35786 try debug windows graalvm test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrhein committed Nov 22, 2023
1 parent d63e2b8 commit 061c9a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/com/teamscale/upload/NativeImageIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ static void assertThatExecutableExists() {
@Override
protected ProcessUtils.ProcessResult runUploader(Arguments arguments) {
//assertThatExecutableExists();
System.out.println("current path: " + (new File(".").getAbsolutePath()));
System.out.println("current path: " + (new File("target/").getAbsolutePath()));
if (new File(".").listFiles()!=null)
System.out.println((Arrays.stream(new File(".").listFiles()).map(File::getName).collect(Collectors.joining("\n"))));
System.out.println((Arrays.stream(new File("target/").listFiles()).map(File::getName).collect(Collectors.joining("\n"))));
System.out.println("---");
return ProcessUtils.runWithStdIn(arguments.stdinFile, arguments.toCommand(TEAMSCALE_UPLOAD_EXECUTABLE));
}
}

0 comments on commit 061c9a3

Please sign in to comment.