1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00
This commit is contained in:
Cedric Beust 2016-04-09 10:56:45 -07:00
parent 1d72522bae
commit a384fab490

View file

@ -68,7 +68,7 @@ abstract class GenericTestRunner : ITestRunnerContributor {
val pb = ProcessBuilder(allArgs) val pb = ProcessBuilder(allArgs)
pb.directory(File(project.directory)) pb.directory(File(project.directory))
pb.inheritIO() pb.inheritIO()
log(1, "Running tests with classpath size ${classpath.size}") log(2, "Running tests with classpath size ${classpath.size}")
log(2, "Launching " + allArgs.joinToString(" ")) log(2, "Launching " + allArgs.joinToString(" "))
val process = pb.start() val process = pb.start()
val errorCode = process.waitFor() val errorCode = process.waitFor()