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 -2
View File
@@ -285,5 +285,4 @@ task debugCompiler(type: JavaExec) {
"-Djava.library.path=${distDir.canonicalPath}/konan/nativelib"
enableAssertions = true
args = findProperty("konan.debug.args").toString().tokenize() ?: []
}
}
+20 -13
View File
@@ -3071,23 +3071,30 @@ task interop_callbacksAndVarargs(type: RunInteropKonanTest) {
interop = 'ccallbacksAndVarargs'
}
task interop_withSpaces() {
dependsOn 'build'
konanArtifacts {
interop('withSpacesInterop') {
defFile generateWithSpaceDefFile()
// TODO: merge with new tests infrastructure.
// Now after clean without calling dist task get error 'Classpath of the tool is empty: cinterop'
/*task interop_withSpaces() {
if (project.testTarget != 'wasm32') {
if (!project.ext.useCustomDist) {
dependsOn ':dist'
}
program("withSpaces") {
srcDir "interop/basics/withSpaces.kt"
libraries {
artifact 'withSpacesInterop'
dependsOn 'build'
konanArtifacts {
interop('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) {
disabled = isWasmTarget(project) || isWindowsTarget(project)