Does anybody know of a good way to run a specific ...
# kotlin-native
k
Does anybody know of a good way to run a specific test from the command line with the mpp? I had this working back in konan but not since
o
just run the test binary (build with
-tr
) with an argument
--ktest_regex_filter=TEST_REGEX
k
Thanks. Got a hot tip on how to build the test binary without also having gradle run the whole thing?
o
cannot you just run Gradle task
linkTest<MyBinary>
or depend on it?
k
Late reply, but this works great. Thanks!