Disable D8 checks for -jvm-target 15 tests

This commit is contained in:
Mikhael Bogdanov
2021-02-05 14:30:42 +01:00
parent 3dff225b98
commit 30b5bfe767
2 changed files with 9 additions and 2 deletions
@@ -93,6 +93,7 @@ codegenTest(target = 8, jvm = 15) {
codegenTest(target = 15, jvm = 15) {
jvmArgs!!.add( "-XX:-FailOverToOldVerifier")
systemProperty("kotlin.test.box.d8.disable", true)
}
//..also add this two tasks to build after adding fresh jdks to build agents
@@ -112,6 +113,9 @@ codegenTest(
targetInTestClass = "Last",
jvm = "Last",
jdk = mostRecentJdk
) {}
) {
jvmArgs!!.add( "-XX:-FailOverToOldVerifier")
systemProperty("kotlin.test.box.d8.disable", true)
}
testsJar()