File tree 1 file changed +9
-10
lines changed
1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -72,20 +72,19 @@ jvmTest {
72
72
}
73
73
74
74
task lockFreedomTest (type : Test , dependsOn : compileTestKotlinJvm) {
75
- // TODO
76
- // classpath = files(configurations.jvm.testRuntime,
77
- // compileKotlinJvm.destinationDir, //clear, untransformed classes
78
- // compileTestKotlinJvm.destinationDir)
79
-
75
+ classpath = files { jvmTest. classpath }
76
+ testClassesDirs = files { jvmTest. testClassesDirs }
80
77
include ' **/*LFTest.*'
81
78
}
82
79
83
80
task jdk16Test (type : Test , dependsOn : [compileTestKotlinJvm, checkJdk16]) {
84
- // executable = "$System.env.JDK_16/bin/java"
85
- // exclude '**/*LinearizabilityTest.*'
86
- // exclude '**/*LFTest.*'
87
- // exclude '**/exceptions/**'
88
- // exclude '**/ExceptionsGuideTest.*'
81
+ classpath = files { jvmTest. classpath }
82
+ testClassesDirs = files { jvmTest. testClassesDirs }
83
+ executable = " $System . env . JDK_16 /bin/java"
84
+ exclude ' **/*LinearizabilityTest.*'
85
+ exclude ' **/*LFTest.*'
86
+ exclude ' **/exceptions/**'
87
+ exclude ' **/ExceptionsGuideTest.*'
89
88
}
90
89
91
90
// Run these tests only during nightly stress test
You can’t perform that action at this time.
0 commit comments