e2f75463d7
Don't reconfigure runtime before every test. For consistency, mark tests that require the runtime with directives instead of relying on test file names.
10 lines
127 B
Plaintext
Vendored
10 lines
127 B
Plaintext
Vendored
// "Import" "true"
|
|
// WITH_RUNTIME
|
|
package some
|
|
|
|
import kotlin.system.measureNanoTime
|
|
|
|
fun testFun() {
|
|
measureNanoTime({})
|
|
}
|