Skip to content

Commit 0ff8751

Browse files
authored
Remove Graal init tracing (#8909)
1 parent b9a2560 commit 0ff8751

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

native-image-tests/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ graalvmNative {
3333

3434
binaries {
3535
named("test") {
36-
// speed up development testing
3736
buildArgs.add("--strict-image-heap")
37+
3838
// see https://github.com/junit-team/junit5/wiki/Upgrading-to-JUnit-5.13
3939
// should not be needed after updating native build tools to 0.11.0
4040
val initializeAtBuildTime = listOf(
@@ -58,7 +58,8 @@ graalvmNative {
5858
"org.junit.platform.suite.engine.SuiteTestDescriptor\$LifecycleMethods"
5959
)
6060
buildArgs.add("--initialize-at-build-time=${initializeAtBuildTime.joinToString(",")}")
61-
buildArgs.add("--trace-class-initialization=kotlin.annotation.AnnotationTarget,org.junit.platform.launcher.core.DiscoveryIssueNotifier,org.junit.platform.launcher.core.LauncherPhase,org.junit.platform.launcher.core.HierarchicalOutputDirectoryProvider,kotlin.annotation.AnnotationRetention,org.junit.platform.engine.support.store.NamespacedHierarchicalStore\$EvaluatedValue")
61+
62+
// speed up development testing
6263
buildArgs.add("-Ob")
6364
}
6465
}

0 commit comments

Comments
 (0)