Skip to content

Commit 74456c3

Browse files
committed
[TEST] Add debug print to narrow down error
1 parent 4adad54 commit 74456c3

File tree

1 file changed

+2
-1
lines changed
  • tests/tck-build-logic/src/main/java/org/graalvm/internal/tck

1 file changed

+2
-1
lines changed

tests/tck-build-logic/src/main/java/org/graalvm/internal/tck/GrypeTask.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ private Set<String> getAllowedImagesFromMaster() throws URISyntaxException, IOEx
229229
ByteArrayOutputStream baos = new ByteArrayOutputStream();
230230
getExecOperations().exec(spec -> {
231231
spec.setStandardOutput(baos);
232-
spec.commandLine("git", "show", "master:tests/tck-build-logic/src/main/resources" + file);
232+
System.out.println("Before fail: " + file);
233+
spec.commandLine("git", "show", "origin/master:tests/tck-build-logic/src/main/resources" + file);
233234
});
234235

235236
allowedImages.add(baos.toString());

0 commit comments

Comments
 (0)