@@ -24,6 +24,7 @@ import org.jetbrains.kotlin.konan.test.blackbox.targets
24
24
import org.jetbrains.kotlin.native.executors.RunProcessResult
25
25
import org.jetbrains.kotlin.native.executors.runProcess
26
26
import org.junit.jupiter.api.Assumptions
27
+ import org.junit.jupiter.api.BeforeEach
27
28
import org.junit.jupiter.api.Tag
28
29
import org.junit.jupiter.api.Test
29
30
import org.junit.jupiter.api.extension.ExtendWith
@@ -51,9 +52,13 @@ class KonanDriverTest : AbstractNativeSimpleTest() {
51
52
Assumptions .assumeFalse(targets.hostTarget.family.isAppleFamily)
52
53
}
53
54
55
+ @BeforeEach
56
+ fun checkAssumptions () {
57
+ `check for KT - 67454 `()
58
+ }
59
+
54
60
@Test
55
61
fun testLLVMVariantDev () {
56
- `check for KT - 67454 `()
57
62
// On macOS for apple targets, clang++ from Xcode is used, which is not switchable as `dev/user`,
58
63
// so the test cannot detect LLVM variant for apple targets on macOS host.
59
64
Assumptions .assumeFalse(targets.hostTarget.family.isAppleFamily && targets.testTarget.family.isAppleFamily)
@@ -122,7 +127,6 @@ class KonanDriverTest : AbstractNativeSimpleTest() {
122
127
123
128
@Test
124
129
fun testDriverVersion () {
125
- `check for KT - 67454 `()
126
130
Assumptions .assumeFalse(HostManager .hostIsMingw &&
127
131
testRunSettings.get<CacheMode >() == CacheMode .WithoutCache &&
128
132
testRunSettings.get<OptimizationMode >() == OptimizationMode .DEBUG
@@ -149,7 +153,6 @@ class KonanDriverTest : AbstractNativeSimpleTest() {
149
153
150
154
@Test
151
155
fun testOverrideKonanProperties () {
152
- `check for KT - 67454 `()
153
156
Assumptions .assumeFalse(HostManager .hostIsMingw &&
154
157
testRunSettings.get<CacheMode >() == CacheMode .WithoutCache &&
155
158
testRunSettings.get<OptimizationMode >() == OptimizationMode .DEBUG
0 commit comments