Skip to content

Commit

Permalink
Filter out "Picked Up" messages from stderr
Browse files Browse the repository at this point in the history
KT-22340 Fixed
  • Loading branch information
cuihtlauac authored and udalov committed Feb 8, 2018
1 parent 46c2add commit 35c454f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ class LauncherScriptTest : TestCaseWithTmpdir() {
workDirectory?.let(cmd::withWorkDirectory)
val processOutput = ExecUtil.execAndGetOutput(cmd)
val stdout = StringUtil.convertLineSeparators(processOutput.stdout)
val stderr = StringUtil.convertLineSeparators(processOutput.stderr)
val stderr = StringUtil.convertLineSeparators(processOutput.stderr).replace("Picked up [_A-Z]+:.*\n".toRegex(), "")
val exitCode = processOutput.exitCode

try {
Expand Down

0 comments on commit 35c454f

Please sign in to comment.