runtime: remove unused test

to simplify build configuration
This commit is contained in:
Svyatoslav Scherbina
2016-11-02 15:01:03 +07:00
committed by SvyatoslavScherbina
parent 5966f69928
commit db1853f627
2 changed files with 0 additions and 23 deletions
-17
View File
@@ -12,23 +12,6 @@ task build(type: CompileCppToBitcode) {
linkerArgs project.file('../common/build/hash.bc').path
}
task test {
dependsOn build
doLast {
exec {
commandLine "$llvmDir/bin/clang", 'src/test/c/main.c', '-c', '-emit-llvm', '-o', "$buildDir/main.bc"
}
exec {
commandLine "$llvmDir/bin/clang++", build.outFile, "$buildDir/main.bc", '-o', "$buildDir/main"
}
exec {
workingDir buildDir
commandLine './main'
}
}
}
task clean << {
delete buildDir
}
-6
View File
@@ -1,6 +0,0 @@
#include <stddef.h>
#include <printf.h>
void kotlinNativeMain() {
// nothing to test yet
}