Adding JRE tests for elemental collections & json
Change-Id: Ife2beca0711068ff67a16e4ca991b8c5ca35df37
diff --git a/elemental/build.xml b/elemental/build.xml
index d971378..fe86d31 100644
--- a/elemental/build.xml
+++ b/elemental/build.xml
@@ -85,7 +85,13 @@
<run-tests output="${junit.out}/web" args="${test.args} -prod" classes="**/AllTests.class"/>
</target>
+ <target name="test.nongwt" if="generated" depends="compile.tests"
+ description="Run tests in the JVM">
+ <run-tests output="${junit.out}/nongwt" args="" classes="**/*JreTest.class"/>
+ </target>
+
<target name="test" description="Run tests">
+ <antcall target="test.nongwt" />
<antcall target="test.web.htmlunit" />
<antcall target="test.dev.htmlunit" />
</target>