Enable windows specific driver tests.

This commit is contained in:
Alexander Gorshenev
2017-06-09 13:58:34 +03:00
committed by alexander-gorshenev
parent ba2ae4c76b
commit 93a589b9ba
@@ -33,7 +33,8 @@ abstract class KonanTest extends JavaExec {
def launcherBc = new File("${dist.canonicalPath}/lib/launcher.bc").absolutePath
def startKtBc = new File("${dist.canonicalPath}/lib/start.kt.bc").absolutePath
def stdlibKtBc = new File("${dist.canonicalPath}/lib/stdlib.kt.bc").absolutePath
def konanc = new File("${dist.canonicalPath}/bin/konanc").absolutePath
def konancDriver = project.isWindows() ? "konanc.bat" : "konanc"
def konanc = new File("${dist.canonicalPath}/bin/$konancDriver").absolutePath
def mainC = 'main.c'
def outputSourceSetName = "testOutputLocal"
String outputDirectory = null
@@ -267,9 +268,6 @@ class RunDriverKonanTest extends KonanTest {
RunDriverKonanTest() {
super()
dependsOn(project.rootProject.tasks['cross_dist'])
if (project.isWindows()) {
this.disabled = true
}
}
void compileTest(List<String> filesToCompile, String exe) {