migrated codeGeneration module to KoTest

This commit is contained in:
Irmen de Jong
2021-11-07 15:40:05 +01:00
parent f4c4ee78d9
commit b9ce94bb68
8 changed files with 187 additions and 68 deletions
+8
View File
@@ -0,0 +1,8 @@
package prog8tests.asmgen
import io.kotest.core.config.AbstractProjectConfig
import kotlin.math.max
object ProjectConfig : AbstractProjectConfig() {
override val parallelism = max(2, Runtime.getRuntime().availableProcessors() / 2)
}