I think I missed the memo. Does native run tests f...
# kotlin-native
k
I think I missed the memo. Does native run tests for darwin targets other than macos in 1.3.70?
b
They now support simulator tests as real test tasks in 1.3.70 🎉
m
Hm, but not for mingwX86:
Copy code
Build tasks
-----------
assemble - Assembles the outputs of this project.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
clean - Deletes the build directory.
compileKotlinMingwX64 - Compiles a klibrary from the 'main' compilation for target 'native'.
compileKotlinMingwX86 - Compiles a klibrary from the 'main' compilation for target 'native'.
compileTestKotlinMingwX64 - Compiles a klibrary from the 'test' compilation for target 'native'.
compileTestKotlinMingwX86 - Compiles a klibrary from the 'test' compilation for target 'native'.
linkDebugTestMingwX64 - Links a test executable 'debugTest' for a target 'mingwX64'.
linkDebugTestMingwX86 - Links a test executable 'debugTest' for a target 'mingwX86'.
metadataJar - Assembles a jar archive containing the main classes.
metadataMainClasses - Assembles outputs for compilation 'main' of target 'metadata'
mingwX64MainKlibrary - Assembles outputs for compilation 'main' of target 'mingwX64'
mingwX64TestKlibrary - Assembles outputs for compilation 'test' of target 'mingwX64'
mingwX86MainKlibrary - Assembles outputs for compilation 'main' of target 'mingwX86'
mingwX86TestKlibrary - Assembles outputs for compilation 'test' of target 'mingwX86'

Verification tasks
------------------
allTests - Runs the tests for all targets and create aggregated report
check - Runs all checks.
mingwX64Test - Executes Kotlin/Native unit tests for target mingwX64.
linkDebugTestMingwX86
is here, but
mingwX86Test
isn't.
a
About mingwX86Test. I think it is missing because the
mingw_x86
is not available as a host, and it isn’t a simulator.
a
m
@Artyom Degtyarev [JB]
mingw_x86
is not host, but
mingw_x64
host can run it as native executable, without any simulators.
🤔 1
a
@msink, I’ve filed this problem on YT, see https://youtrack.jetbrains.com/issue/KT-36669
n
@basher this is awesome, thanks for sharing!
🕺 1