Don't print to log in successful parcelize tests
This commit is contained in:
committed by
TeamCityServer
parent
b41fdd2705
commit
818bbbbb83
+1
@@ -169,6 +169,7 @@ abstract class AbstractParcelBoxTest : CodegenTestCase() {
|
|||||||
process.waitFor(3, TimeUnit.MINUTES)
|
process.waitFor(3, TimeUnit.MINUTES)
|
||||||
println(process.inputStream.bufferedReader().lineSequence().joinToString("\n"))
|
println(process.inputStream.bufferedReader().lineSequence().joinToString("\n"))
|
||||||
if (process.exitValue() != 0) {
|
if (process.exitValue() != 0) {
|
||||||
|
println(process.inputStream.bufferedReader().lineSequence().joinToString("\n"))
|
||||||
throw AssertionError("Process exited with exit code ${process.exitValue()} \n" + classFileFactory.createText())
|
throw AssertionError("Process exited with exit code ${process.exitValue()} \n" + classFileFactory.createText())
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
+1
-1
@@ -164,8 +164,8 @@ abstract class AbstractParcelizeBoxTest : CodegenTestCase() {
|
|||||||
).start()
|
).start()
|
||||||
|
|
||||||
process.waitFor(3, TimeUnit.MINUTES)
|
process.waitFor(3, TimeUnit.MINUTES)
|
||||||
println(process.inputStream.bufferedReader().lineSequence().joinToString("\n"))
|
|
||||||
if (process.exitValue() != 0) {
|
if (process.exitValue() != 0) {
|
||||||
|
println(process.inputStream.bufferedReader().lineSequence().joinToString("\n"))
|
||||||
throw AssertionError("Process exited with exit code ${process.exitValue()} \n" + classFileFactory.createText())
|
throw AssertionError("Process exited with exit code ${process.exitValue()} \n" + classFileFactory.createText())
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
Reference in New Issue
Block a user