Skip to content

Commit bd6ba90

Browse files
committed
Merge remote-tracking branch 'origin/main' into marc/parallel-execution-custom-implementation
2 parents e7791ae + 85ccf17 commit bd6ba90

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.idea/icon.png

21.1 KB
Loading

documentation/src/test/kotlin/example/KotlinCoroutinesDemo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import org.junit.jupiter.api.BeforeEach
1414
import org.junit.jupiter.api.Test
1515

1616
// end::user_guide[]
17-
// tag::user_guide[]
1817
@Suppress("JUnitMalformedDeclaration")
18+
// tag::user_guide[]
1919
class KotlinCoroutinesDemo {
2020
@BeforeEach
2121
fun regularSetUp() {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ mockito-bom = { module = "org.mockito:mockito-bom", version = "5.20.0" }
6060
mockito-core = { module = "org.mockito:mockito-core" }
6161
mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter" }
6262
nohttp-checkstyle = { module = "io.spring.nohttp:nohttp-checkstyle", version = "0.0.11" }
63-
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.12.11" }
63+
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.12.12" }
6464
opentest4j = { module = "org.opentest4j:opentest4j", version.ref = "opentest4j" }
6565
openTestReporting-cli = { module = "org.opentest4j.reporting:open-test-reporting-cli", version.ref = "openTestReporting" }
6666
openTestReporting-events = { module = "org.opentest4j.reporting:open-test-reporting-events", version.ref = "openTestReporting" }

gradle/plugins/common/src/main/kotlin/junitbuild.java-errorprone-conventions.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ tasks.withType<JavaCompile>().configureEach {
6969
}
7070
onlyNullMarked = true
7171
isJSpecifyMode = true
72-
customContractAnnotations.add("org.junit.platform.commons.annotation.Contract")
7372
checkContracts = true
7473
suppressionNameAliases.add("DataFlowIssue")
7574
}

platform-tooling-support-tests/projects/graalvm-starter/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,19 @@ tasks.test {
3333

3434
val initializeAtBuildTime = mapOf(
3535
// These need to be added to native-build-tools
36-
"6.1" to listOf<String>(),
36+
"5.14.1" to listOf(
37+
"org.junit.jupiter.engine.discovery.MethodSegmentResolver"
38+
),
3739
)
3840

3941
graalvmNative {
4042
binaries {
4143
named("test") {
4244
buildArgs.add("-H:+ReportExceptionStackTraces")
43-
buildArgs.add("--initialize-at-build-time=${initializeAtBuildTime.values.flatten().joinToString(",")}")
45+
val classNames = initializeAtBuildTime.values.flatten()
46+
if (classNames.isNotEmpty()) {
47+
buildArgs.add("--initialize-at-build-time=${classNames.joinToString(",")}")
48+
}
4449
}
4550
}
4651
}

0 commit comments

Comments
 (0)