Remove module integration-tests, merge into compiler-tests

This commit is contained in:
Alexander Udalov
2015-01-03 12:28:54 +03:00
parent cd79c4573d
commit 5c9750ae6b
147 changed files with 28 additions and 46 deletions
@@ -0,0 +1,14 @@
<project name="Ant Task Test" default="build">
<target name="build">
<java dir="${temp}" fork="true" classname="org.jetbrains.jet.cli.js.K2JSCompiler">
<classpath>
<pathelement location="${kotlin.lib}/kotlin-compiler.jar"/>
<pathelement location="${kotlin.lib}/kotlin-runtime.jar"/>
</classpath>
<arg value="${test.data}/root1/foo.kt"/>
<arg value="-output"/>
<arg value="out.js"/>
<jvmarg value="-noverify"/>
</java>
</target>
</project>