Disable in K2 tests that fail for two-stage
Merge-request: KT-MR-8786 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
a9343aeb7d
commit
7bce6d21f0
@@ -3487,6 +3487,7 @@ standaloneTest("mpp_default_args") {
|
||||
}
|
||||
|
||||
standaloneTest("mpp_optional_expectation") {
|
||||
disabled = isK2(project) // KT-56579
|
||||
source = "codegen/mpp/mpp_optional_expectation.kt"
|
||||
def outputRoot = project.ext.testOutputLocal.toString()
|
||||
def srcPath = "$outputRoot/$name/mpp_optional_expectation.kt".with {
|
||||
@@ -4930,13 +4931,15 @@ interopTest("interop_workerSignals") {
|
||||
}
|
||||
|
||||
interopTest("interop_forwardDeclarations") {
|
||||
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
|
||||
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet.
|
||||
isK2(project) // KT-56028
|
||||
source = "interop/forwardDeclarations/forwardDeclarations.kt"
|
||||
interop = "cForwardDeclarations"
|
||||
}
|
||||
|
||||
interopTest("interop_forwardDeclarationsTwoLibs") {
|
||||
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
|
||||
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet.
|
||||
isK2(project) // KT-56028
|
||||
source = "interop/forwardDeclarationsTwoLibs/forwardDeclarationsTwoLibs.kt"
|
||||
interop = "cForwardDeclarationsTwoLibs1"
|
||||
interop2 = "cForwardDeclarationsTwoLibs2"
|
||||
|
||||
Reference in New Issue
Block a user