wasm gc: enable running tests by default

This commit is contained in:
Alexey Andreev 2024-09-26 18:39:53 +02:00
parent f64f907b9f
commit 58cef561a3

View File

@ -61,7 +61,7 @@ tasks.test {
systemProperty("teavm.junit.wasm.disasm", providers.gradleProperty("teavm.tests.wasm.disasm") systemProperty("teavm.junit.wasm.disasm", providers.gradleProperty("teavm.tests.wasm.disasm")
.orElse("false").get()) .orElse("false").get())
systemProperty("teavm.junit.wasm-gc", providers.gradleProperty("teavm.tests.wasm-gc").orElse("false").get()) systemProperty("teavm.junit.wasm-gc", providers.gradleProperty("teavm.tests.wasm-gc").orElse("true").get())
systemProperty("teavm.junit.wasm-gc.runner", browser) systemProperty("teavm.junit.wasm-gc.runner", browser)
systemProperty("teavm.junit.wasm-gc.disasm", providers.gradleProperty("teavm.tests.wasm-gc.disasm") systemProperty("teavm.junit.wasm-gc.disasm", providers.gradleProperty("teavm.tests.wasm-gc.disasm")
.orElse("false").get()) .orElse("false").get())