Temporarily disable test. Wait merging with new test infrastructure

This commit is contained in:
Elena Lepilkina
2019-04-03 16:37:31 +03:00
parent 77c1914b59
commit 258f2bc0de
2 changed files with 21 additions and 15 deletions
-1
View File
@@ -286,4 +286,3 @@ task debugCompiler(type: JavaExec) {
enableAssertions = true enableAssertions = true
args = findProperty("konan.debug.args").toString().tokenize() ?: [] args = findProperty("konan.debug.args").toString().tokenize() ?: []
} }
+20 -13
View File
@@ -3071,23 +3071,30 @@ task interop_callbacksAndVarargs(type: RunInteropKonanTest) {
interop = 'ccallbacksAndVarargs' interop = 'ccallbacksAndVarargs'
} }
task interop_withSpaces() { // TODO: merge with new tests infrastructure.
dependsOn 'build' // Now after clean without calling dist task get error 'Classpath of the tool is empty: cinterop'
konanArtifacts { /*task interop_withSpaces() {
interop('withSpacesInterop') { if (project.testTarget != 'wasm32') {
defFile generateWithSpaceDefFile() if (!project.ext.useCustomDist) {
dependsOn ':dist'
} }
program("withSpaces") { dependsOn 'build'
srcDir "interop/basics/withSpaces.kt" konanArtifacts {
libraries { interop('withSpacesInterop') {
artifact 'withSpacesInterop' defFile generateWithSpaceDefFile()
}
program("withSpaces") {
srcDir "interop/basics/withSpaces.kt"
libraries {
artifact 'withSpacesInterop'
}
} }
} }
doLast {
assert file("${buildDir}/cutom map.map").exists()
}
} }
doLast { }*/
assert file("${buildDir}/cutom map.map").exists()
}
}
task interop_echo_server(type: RunInteropKonanTest) { task interop_echo_server(type: RunInteropKonanTest) {
disabled = isWasmTarget(project) || isWindowsTarget(project) disabled = isWasmTarget(project) || isWindowsTarget(project)