[K/N] Debug output for flaky testReleaseCompilerAgainstPreReleaseLibrary

^KT-64822
This commit is contained in:
Alexander Zakharenko
2024-01-08 17:53:49 +01:00
committed by Space Team
parent 92affa1b24
commit 62facee96c
@@ -110,6 +110,12 @@ public abstract class AbstractCliTest extends TestCaseWithTmpdir {
.replace("\n" + Usage.BAT_DELIMITER_CHARACTERS_NOTE + "\n", "")
.replaceAll("log4j:WARN.*\n", "");
// Debug output for KT-64822 investigation
System.out.println("testDataAbsoluteDir: " + testDataAbsoluteDir);
System.out.println("pureOutput: " + pureOutput);
System.out.println("normalizedOutputWithoutExitCode: " + normalizedOutputWithoutExitCode);
return exitCode == null ? normalizedOutputWithoutExitCode : (normalizedOutputWithoutExitCode + exitCode + "\n");
}