I was using this task to run kotlin native tests o...
# kotlin-native
e
I was using this task to run kotlin native tests on the ios simulator, but it looks like the link task is missing when updating to 1.3.40. Anyone know what this should be updated to?
b
I believe
linkTestDebugExecutableIosX64
is now
linkDebugTestIosX64
r
Yeah
linkDebugTest<Name>
is correct as I understand it. Some versions of that setup also need to change usages of
binaries.getExecutable()
to
binaries.getTest()
but you might be fine assuming the test outputFile is still the same.
oh I guess you already got there judging by your next post
👍 1