Skip to content

Commit 5f986bc

Browse files
sullisargha-c
authored andcommitted
run test suite with 'Xcheck:jni' JVM argument (#1734)
Run the test suite with "Xcheck:jni" so that we can detect any critical JNI problems
1 parent 1995f17 commit 5f986bc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ subprojects {
9090
]
9191
}
9292

93+
tasks.withType(Test).configureEach {
94+
jvmArgs += [
95+
"-Xcheck:jni"
96+
]
97+
}
98+
9399
test {
94100
useJUnitPlatform()
95101
testLogging {

0 commit comments

Comments
 (0)