How to tell kotlinx-benchmark to run only single b...
# announcements
k
How to tell kotlinx-benchmark to run only single benchark, not everything?
i
You can create a new benchmark configuration profile, and use
include
to include only the desired benchmarks with a regex matching their fully qualified names: https://github.com/Kotlin/kotlinx-benchmark/blob/v0.3.0/examples/kotlin-multiplatform/build.gradle#L94
👍 1
k
thanks, it's a good workaround for now...