https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

Kris Wong

09/23/2020, 5:55 PM
I notice that JVM tests produce test result files in binary format. is that expected? my build server (bamboo) expects xml.
workaround does not work
b

basher

09/23/2020, 6:50 PM
it's been working for us for awhile. can you share samples from your build.gradle(.kts)
also did you try a
find build -name '*.xml'
after running? might just not be in the place you expect or something
i think even with enabling xml, you still get the binary output too
k

Kris Wong

09/23/2020, 7:22 PM
yes I ran a find command
I'm not sure what you want to see from my build file...
kotlin { jvm() }
😛
jvmTest
works. the aggregate test tasks do not.
b

basher

09/23/2020, 8:09 PM
huh that's pretty weird
k

Kris Wong

09/23/2020, 8:13 PM
I assume at some point after the configuration, the aggregate task is disabling the associated property on the underlying jvmTest task
2 Views