[K/N]: Do not require JDK11 for :native:native.tests

This commit provides a small fix in the code of a native test runner so that JDK11 is not required and removes the JDK11 target for the atomicfu-compiler-plugin.

Fixes KT-61293

Merge-request: KT-MR-11757
Merged-by: Maria Sokolova <maria.sokolova@jetbrains.com>
This commit is contained in:
mvicsokolova
2023-08-22 13:32:38 +00:00
committed by Space Team
parent 7db551c452
commit 76a1091820
3 changed files with 2 additions and 9 deletions
@@ -154,8 +154,8 @@ private class UnfilteredProcessOutput {
private val stdErr = ByteArrayOutputStream()
fun toProcessOutput(outputFilter: TestOutputFilter): ProcessOutput = ProcessOutput(
stdOut = outputFilter.filter(stdOut.toString(Charsets.UTF_8)),
stdErr = stdErr.toString(Charsets.UTF_8)
stdOut = outputFilter.filter(stdOut.toString(Charsets.UTF_8.name())),
stdErr = stdErr.toString(Charsets.UTF_8.name())
)
companion object {