HtmlBuilder is commented out, compilation fails; Using "testlib/module.kt" to compile Unit tests with module.

This commit is contained in:
Evgeny Goldin
2012-02-20 18:22:15 +02:00
parent 06d8329548
commit a918058262
2 changed files with 4 additions and 13 deletions
+4 -4
View File
@@ -385,13 +385,13 @@
<testlib-junit-tests classpath = "${tests-jar}"/>
<!-- Module => Explicit Jar -->
<kotlinc-jar module = "${basedir}/build-tools/test/modules/Testlib.kts"/>
<kotlinc-jar module = "${basedir}/testlib/module.kt"/>
<testlib-junit-tests classpath = "${tests-jar}"/>
<!-- Module => Default Jar -->
<kotlinc-jar module = "${basedir}/build-tools/test/modules/Testlib.kts" jar=""/>
<move file="${basedir}/build-tools/test/modules/Testlib.jar" todir="${tests-dir}"/>
<testlib-junit-tests classpath = "${tests-dir}/Testlib.jar"/>
<kotlinc-jar module = "${basedir}/testlib/module.kt" jar=""/>
<move file="${basedir}/testlib/testlib.jar" todir="${tests-dir}"/>
<testlib-junit-tests classpath = "${tests-dir}/testlib.jar"/>
</sequential>
</macrodef>
-9
View File
@@ -1,9 +0,0 @@
import kotlin.modules.*
val homeDir = "../../../testlib/test"
fun project() {
module("Testlib") {
sources += homeDir
}
}