Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schuetz2013-07-10 12:31:59 +0000
committerThomas Schuetz2013-07-10 12:31:59 +0000
commit5fabf684ab535b5cee2fb4f4fc29fe1332b20726 (patch)
treef8a3d57f254f22df387c769d0b1d10812af64572
parentcb5e9f1708239c19ea313136809065a0e9ee4128 (diff)
downloadorg.eclipse.etrice-5fabf684ab535b5cee2fb4f4fc29fe1332b20726.tar.gz
org.eclipse.etrice-5fabf684ab535b5cee2fb4f4fc29fe1332b20726.tar.xz
org.eclipse.etrice-5fabf684ab535b5cee2fb4f4fc29fe1332b20726.zip
[generator.java.tests] fixed ant build for testcases after change of
folder name modellib.java/models to model Change-Id: I2710fef02b6a70317df86785e9c372759f870401
-rw-r--r--tests/org.eclipse.etrice.generator.java.tests/make.xml586
1 files changed, 293 insertions, 293 deletions
diff --git a/tests/org.eclipse.etrice.generator.java.tests/make.xml b/tests/org.eclipse.etrice.generator.java.tests/make.xml
index df7312c28..e681f0942 100644
--- a/tests/org.eclipse.etrice.generator.java.tests/make.xml
+++ b/tests/org.eclipse.etrice.generator.java.tests/make.xml
@@ -1,293 +1,293 @@
-<?xml version="1.0"?>
-<!--
- Ant makefile for building and running of tests.
- This includes invocation of the Java code generator and conversion of the etunit
- results into xunit xml.
-
- To work locally you should define in your environment
- ETRICE_TARGET_PLATFORM=path to the eclipse folder of your Juno installation
-
- @author Henrik Rentz-Reichert
--->
-<project name="project" default="all">
-
- <property name="java.tests.model.path" value="./models"/>
- <property name="modellib.path" value="../../runtime/org.eclipse.etrice.modellib.java"/>
- <property name="runtime.path" value="../../runtime/org.eclipse.etrice.runtime.java"/>
- <property name="bin.path" value="./bin"/>
- <property name="xml.output" value="./tmp"/>
- <property name="output" value="./output"/>
- <property environment="env"/>
-
- <!--
- all: copies the models, generates, compiles, runs, converts and copies the results
- -->
- <target name="all" depends="convert,copy_results">
- <echo>done with org.eclipse.etrice.generator.java.tests</echo>
- </target>
-
- <!--
- set_tp: get the target.platform property from the environment var ETRICE_TARGET_PLATFORM if not set already
- -->
- <target name="set_tp" unless="target.platform">
- <echo>using local target platform</echo>
- <property name="target.platform" value="${env.ETRICE_TARGET_PLATFORM}"/>
- </target>
-
- <!--
- set_tr: sets the test.result property if not set already
- -->
- <target name="set_tr" unless="test.results">
- <echo>using local test result folder</echo>
- <property name="test.results" value="./results"/>
- </target>
-
- <!--
- clean: deletes all folders created by this script
- -->
- <target name="clean" depends="set_tr">
- <delete dir="${bin.path}"/>
- <delete dir="models"/>
- <delete dir="${output}"/>
- <delete dir="src-gen"/>
- <delete dir="tmp"/>
- </target>
-
- <!--
- copy_models: copies the models from their original folders to the build location
- -->
- <target name="copy_models" depends="clean">
- <copy todir="models" >
- <fileset dir="../org.eclipse.etrice.generator.common.tests/models">
- <include name="*.room"/>
- <include name="*.config"/>
- <include name="*.etmap"/>
- <include name="*.etphys"/>
- <include name="*.rt-config"/>
- </fileset>
- <fileset dir="../../runtime/org.eclipse.etrice.modellib.java/models">
- <include name="TimingService.room"/>
- <include name="Types.room"/>
- <include name="TcpService.room"/>
- <include name="Language.room"/>
- </fileset>
- </copy>
- <move file="models/StaticConfigTest_Java.room" toFile="models/StaticConfigTest.room"/>
- </target>
-
- <!--
- generate: invokes the Java generator for the ROOM models
- -->
- <target name="generate" depends="set_tp,copy_models">
- <mkdir dir="${output}"/>
- <path id="clspath">
- <pathelement location="../../plugins/org.eclipse.etrice.generator.java/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.generator.config/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.generator.doc/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.generator/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.generator.config/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.core.room/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.core.etphys/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.core.etmap/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.core.config/bin"/>
- <pathelement location="../../plugins/org.eclipse.etrice.core.genmodel/bin"/>
- <fileset dir="${target.platform}/plugins/">
- <include name="org.eclipse.emf.ecore_2.9*.jar" />
- <include name="org.eclipse.emf.common_2.9*.jar" />
- <include name="org.eclipse.emf.ecore.xmi_2.9*.jar" />
- <include name="org.eclipse.xtext_2.4*.jar" />
- <include name="com.google.inject_*.jar" />
- <include name="com.google.guava_1*.jar" />
- <include name="org.eclipse.equinox.common_3.6.*.jar" />
- <include name="org.eclipse.xtext.util_2.4*.jar" />
- <include name="org.eclipse.xtend.lib_2.4*.jar" />
- <include name="org.eclipse.xtext.xbase.lib_2.4*.jar" />
- <include name="org.apache.log4j_1.2*.jar" />
- <include name="org.antlr.runtime_3.2*.jar" />
- <include name="javax.inject_1.0*.jar" />
- </fileset>
- </path>
-
- <java output="${output}/generate.txt" error="${output}/generate_err.txt" classname="org.eclipse.etrice.generator.java.Main" fork="true" failonerror="true">
- <arg value="${java.tests.model.path}/generator.java.tests.config"/>
- <arg value="${java.tests.model.path}/generator.java.tests.etmap"/>
- <classpath refid="clspath"/>
- </java>
- </target>
-
- <!--
- compile: compiles the generated Java sources
- -->
- <target name="compile" depends="generate">
- <!-- introduced this indirection to be able to log the output -->
- <ant antfile="make.xml" target="logged_compile" output="${output}/compile.txt">
- </ant>
- </target>
-
- <!-- set debug and verbose to on to produce more output -->
- <target name="logged_compile">
- <mkdir dir="${bin.path}"/>
- <javac srcdir="src-gen:src"
- destdir="${bin.path}"
- classpath="${runtime.path}/bin"
- debug="off"
- verbose="off"
- />
- </target>
-
- <!--
- run: runs all executables
- -->
- <target name="run" depends="compile">
- <mkdir dir="tmp/log"/>
- <echo>start HandlerTest</echo>
- <java output="${output}/runHandlerTest.txt" classname="HandlerTest.SubSystem_HandlerTestRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end HandlerTest</echo>
- <echo>start ChoicePointTest</echo>
- <java output="${output}/runChoicePointTest.txt" classname="ChoicePointTest.SubSystem_CPTestRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end ChoicePointTest</echo>
- <echo>start PingPongThreadTest</echo>
- <java output="${output}/runPingPongThreadTest.txt" classname="PingPongThreadTest.SubSystem_PingPongRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end PingPongThreadTest</echo>
- <echo>start PingPongThreadTestReplPort</echo>
- <java output="${output}/runPingPongThreadReplPortTest.txt" classname="PingPongThreadTestReplPort.SubSystem_PingPongReplPortRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end PingPongThreadTestReplPort</echo>
- <echo>start SendingDataTestJava</echo>
- <java output="${output}/runSendingDataTestJava.txt" classname="SendingDataTestJava.SubSystem_SendingDataRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end SendingDataTestJava</echo>
- <echo>start TCPTest</echo>
- <java output="${output}/runTCPTest.txt" classname="TCPTest.SubSystem_TCPTestRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end TCPTest</echo>
- <echo>start StaticConfigTest</echo>
- <java output="${output}/runStaticConfigTest.txt" classname="StaticConfigTest.SubSystem_StaticConfigTestRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end StaticConfigTest</echo>
- <echo>start DynamicConfigTest</echo>
- <java output="${output}/runDynamicConfigTest.txt" classname="DynamicConfigTest.SubSystem_DynamicConfigTestRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end DynamicConfigTest</echo>
- <echo>start DataDrivenTest</echo>
- <java output="${output}/runDataDrivenTest.txt" classname="DataDrivenTest.SubSystem_DataDrivenRunner" fork="true" failonerror="true">
- <arg value="-run_as_test"/>
- <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
- </java>
- <echo>end DataDrivenTest</echo>
- </target>
-
- <!--
- convert: converts etu- into xunit xml-format
- -->
- <target name="convert" depends="run,set_tp">
- <path id="clspath">
- <pathelement location="../../plugins/org.eclipse.etrice.etunit.converter/bin"/>
- <fileset dir="${target.platform}/plugins/">
- <include name="org.eclipse.core.runtime_3.9*.jar" />
- <include name="org.eclipse.emf.ecore_2.9*.jar" />
- <include name="org.eclipse.emf.ecore.xmi_2.9*.jar" />
- <include name="org.eclipse.emf.common_2.9*.jar" />
- </fileset>
- </path>
-
- <java output="${output}/convert.txt" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.ChoicePointTest"/>
- <arg value="./tmp/ChoicePointTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.HandlerTest"/>
- <arg value="./tmp/HandlerTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.PingPongThreadTest"/>
- <arg value="./tmp/PingPongThreadTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.PingPongThreadTestReplPort"/>
- <arg value="./tmp/PingPongThreadTestReplPort.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.SendingDataTest"/>
- <arg value="./tmp/SendingDataTestJava.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.TCPTest"/>
- <arg value="./tmp/TCPTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.StaticConfigTest"/>
- <arg value="./tmp/StaticConfigTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.DynamicConfigTest"/>
- <arg value="./tmp/DynamicConfigTest.etu"/>
- <classpath refid="clspath"/>
- </java>
-
- <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
- <arg value="-suite"/>
- <arg value="org.eclipse.etrice.generator.java.tests.DataDrivenTest"/>
- <arg value="./tmp/DataDrivenTest.etu"/>
- <classpath refid="clspath"/>
- </java>
- </target>
-
- <!--
- copy_results: copies the *.xml results to their final destination
- -->
- <target name="copy_results" depends="set_tr">
- <move file="./tmp/HandlerTest.xml" tofile="./tmp/JavaHandlerTest.xml"/>
- <move file="./tmp/ChoicePointTest.xml" tofile="./tmp/JavaChoicePointTest.xml"/>
- <move file="./tmp/StaticConfigTest.xml" tofile="./tmp/JavaStaticConfigTest.xml"/>
- <move file="./tmp/DynamicConfigTest.xml" tofile="./tmp/JavaDynamicConfigTest.xml"/>
- <move file="./tmp/DataDrivenTest.xml" tofile="./tmp/JavaDataDrivenTest.xml"/>
- <copy todir="${test.results}" >
- <fileset dir="./tmp">
- <include name="*.xml"/>
- </fileset>
- </copy>
- </target>
-
-</project>
+<?xml version="1.0"?>
+<!--
+ Ant makefile for building and running of tests.
+ This includes invocation of the Java code generator and conversion of the etunit
+ results into xunit xml.
+
+ To work locally you should define in your environment
+ ETRICE_TARGET_PLATFORM=path to the eclipse folder of your Juno installation
+
+ @author Henrik Rentz-Reichert
+-->
+<project name="project" default="all">
+
+ <property name="java.tests.model.path" value="./models"/>
+ <property name="modellib.path" value="../../runtime/org.eclipse.etrice.modellib.java"/>
+ <property name="runtime.path" value="../../runtime/org.eclipse.etrice.runtime.java"/>
+ <property name="bin.path" value="./bin"/>
+ <property name="xml.output" value="./tmp"/>
+ <property name="output" value="./output"/>
+ <property environment="env"/>
+
+ <!--
+ all: copies the models, generates, compiles, runs, converts and copies the results
+ -->
+ <target name="all" depends="convert,copy_results">
+ <echo>done with org.eclipse.etrice.generator.java.tests</echo>
+ </target>
+
+ <!--
+ set_tp: get the target.platform property from the environment var ETRICE_TARGET_PLATFORM if not set already
+ -->
+ <target name="set_tp" unless="target.platform">
+ <echo>using local target platform</echo>
+ <property name="target.platform" value="${env.ETRICE_TARGET_PLATFORM}"/>
+ </target>
+
+ <!--
+ set_tr: sets the test.result property if not set already
+ -->
+ <target name="set_tr" unless="test.results">
+ <echo>using local test result folder</echo>
+ <property name="test.results" value="./results"/>
+ </target>
+
+ <!--
+ clean: deletes all folders created by this script
+ -->
+ <target name="clean" depends="set_tr">
+ <delete dir="${bin.path}"/>
+ <delete dir="models"/>
+ <delete dir="${output}"/>
+ <delete dir="src-gen"/>
+ <delete dir="tmp"/>
+ </target>
+
+ <!--
+ copy_models: copies the models from their original folders to the build location
+ -->
+ <target name="copy_models" depends="clean">
+ <copy todir="models" >
+ <fileset dir="../org.eclipse.etrice.generator.common.tests/models">
+ <include name="*.room"/>
+ <include name="*.config"/>
+ <include name="*.etmap"/>
+ <include name="*.etphys"/>
+ <include name="*.rt-config"/>
+ </fileset>
+ <fileset dir="../../runtime/org.eclipse.etrice.modellib.java/model">
+ <include name="TimingService.room"/>
+ <include name="Types.room"/>
+ <include name="TcpService.room"/>
+ <include name="Language.room"/>
+ </fileset>
+ </copy>
+ <move file="models/StaticConfigTest_Java.room" toFile="models/StaticConfigTest.room"/>
+ </target>
+
+ <!--
+ generate: invokes the Java generator for the ROOM models
+ -->
+ <target name="generate" depends="set_tp,copy_models">
+ <mkdir dir="${output}"/>
+ <path id="clspath">
+ <pathelement location="../../plugins/org.eclipse.etrice.generator.java/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.generator.config/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.generator.doc/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.generator/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.generator.config/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.core.room/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.core.etphys/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.core.etmap/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.core.config/bin"/>
+ <pathelement location="../../plugins/org.eclipse.etrice.core.genmodel/bin"/>
+ <fileset dir="${target.platform}/plugins/">
+ <include name="org.eclipse.emf.ecore_2.9*.jar" />
+ <include name="org.eclipse.emf.common_2.9*.jar" />
+ <include name="org.eclipse.emf.ecore.xmi_2.9*.jar" />
+ <include name="org.eclipse.xtext_2.4*.jar" />
+ <include name="com.google.inject_*.jar" />
+ <include name="com.google.guava_1*.jar" />
+ <include name="org.eclipse.equinox.common_3.6.*.jar" />
+ <include name="org.eclipse.xtext.util_2.4*.jar" />
+ <include name="org.eclipse.xtend.lib_2.4*.jar" />
+ <include name="org.eclipse.xtext.xbase.lib_2.4*.jar" />
+ <include name="org.apache.log4j_1.2*.jar" />
+ <include name="org.antlr.runtime_3.2*.jar" />
+ <include name="javax.inject_1.0*.jar" />
+ </fileset>
+ </path>
+
+ <java output="${output}/generate.txt" error="${output}/generate_err.txt" classname="org.eclipse.etrice.generator.java.Main" fork="true" failonerror="true">
+ <arg value="${java.tests.model.path}/generator.java.tests.config"/>
+ <arg value="${java.tests.model.path}/generator.java.tests.etmap"/>
+ <classpath refid="clspath"/>
+ </java>
+ </target>
+
+ <!--
+ compile: compiles the generated Java sources
+ -->
+ <target name="compile" depends="generate">
+ <!-- introduced this indirection to be able to log the output -->
+ <ant antfile="make.xml" target="logged_compile" output="${output}/compile.txt">
+ </ant>
+ </target>
+
+ <!-- set debug and verbose to on to produce more output -->
+ <target name="logged_compile">
+ <mkdir dir="${bin.path}"/>
+ <javac srcdir="src-gen:src"
+ destdir="${bin.path}"
+ classpath="${runtime.path}/bin"
+ debug="off"
+ verbose="off"
+ />
+ </target>
+
+ <!--
+ run: runs all executables
+ -->
+ <target name="run" depends="compile">
+ <mkdir dir="tmp/log"/>
+ <echo>start HandlerTest</echo>
+ <java output="${output}/runHandlerTest.txt" classname="HandlerTest.SubSystem_HandlerTestRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end HandlerTest</echo>
+ <echo>start ChoicePointTest</echo>
+ <java output="${output}/runChoicePointTest.txt" classname="ChoicePointTest.SubSystem_CPTestRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end ChoicePointTest</echo>
+ <echo>start PingPongThreadTest</echo>
+ <java output="${output}/runPingPongThreadTest.txt" classname="PingPongThreadTest.SubSystem_PingPongRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end PingPongThreadTest</echo>
+ <echo>start PingPongThreadTestReplPort</echo>
+ <java output="${output}/runPingPongThreadReplPortTest.txt" classname="PingPongThreadTestReplPort.SubSystem_PingPongReplPortRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end PingPongThreadTestReplPort</echo>
+ <echo>start SendingDataTestJava</echo>
+ <java output="${output}/runSendingDataTestJava.txt" classname="SendingDataTestJava.SubSystem_SendingDataRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end SendingDataTestJava</echo>
+ <echo>start TCPTest</echo>
+ <java output="${output}/runTCPTest.txt" classname="TCPTest.SubSystem_TCPTestRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end TCPTest</echo>
+ <echo>start StaticConfigTest</echo>
+ <java output="${output}/runStaticConfigTest.txt" classname="StaticConfigTest.SubSystem_StaticConfigTestRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end StaticConfigTest</echo>
+ <echo>start DynamicConfigTest</echo>
+ <java output="${output}/runDynamicConfigTest.txt" classname="DynamicConfigTest.SubSystem_DynamicConfigTestRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end DynamicConfigTest</echo>
+ <echo>start DataDrivenTest</echo>
+ <java output="${output}/runDataDrivenTest.txt" classname="DataDrivenTest.SubSystem_DataDrivenRunner" fork="true" failonerror="true">
+ <arg value="-run_as_test"/>
+ <classpath path="${bin.path};${runtime.path}/bin;${modellib.path}/bin"/>
+ </java>
+ <echo>end DataDrivenTest</echo>
+ </target>
+
+ <!--
+ convert: converts etu- into xunit xml-format
+ -->
+ <target name="convert" depends="run,set_tp">
+ <path id="clspath">
+ <pathelement location="../../plugins/org.eclipse.etrice.etunit.converter/bin"/>
+ <fileset dir="${target.platform}/plugins/">
+ <include name="org.eclipse.core.runtime_3.9*.jar" />
+ <include name="org.eclipse.emf.ecore_2.9*.jar" />
+ <include name="org.eclipse.emf.ecore.xmi_2.9*.jar" />
+ <include name="org.eclipse.emf.common_2.9*.jar" />
+ </fileset>
+ </path>
+
+ <java output="${output}/convert.txt" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.ChoicePointTest"/>
+ <arg value="./tmp/ChoicePointTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.HandlerTest"/>
+ <arg value="./tmp/HandlerTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.PingPongThreadTest"/>
+ <arg value="./tmp/PingPongThreadTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.PingPongThreadTestReplPort"/>
+ <arg value="./tmp/PingPongThreadTestReplPort.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.SendingDataTest"/>
+ <arg value="./tmp/SendingDataTestJava.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.TCPTest"/>
+ <arg value="./tmp/TCPTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.StaticConfigTest"/>
+ <arg value="./tmp/StaticConfigTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.DynamicConfigTest"/>
+ <arg value="./tmp/DynamicConfigTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+
+ <java output="${output}/convert.txt" append="true" classname="org.eclipse.etrice.etunit.converter.EtUnitReportConverter" fork="true" failonerror="true">
+ <arg value="-suite"/>
+ <arg value="org.eclipse.etrice.generator.java.tests.DataDrivenTest"/>
+ <arg value="./tmp/DataDrivenTest.etu"/>
+ <classpath refid="clspath"/>
+ </java>
+ </target>
+
+ <!--
+ copy_results: copies the *.xml results to their final destination
+ -->
+ <target name="copy_results" depends="set_tr">
+ <move file="./tmp/HandlerTest.xml" tofile="./tmp/JavaHandlerTest.xml"/>
+ <move file="./tmp/ChoicePointTest.xml" tofile="./tmp/JavaChoicePointTest.xml"/>
+ <move file="./tmp/StaticConfigTest.xml" tofile="./tmp/JavaStaticConfigTest.xml"/>
+ <move file="./tmp/DynamicConfigTest.xml" tofile="./tmp/JavaDynamicConfigTest.xml"/>
+ <move file="./tmp/DataDrivenTest.xml" tofile="./tmp/JavaDataDrivenTest.xml"/>
+ <copy todir="${test.results}" >
+ <fileset dir="./tmp">
+ <include name="*.xml"/>
+ </fileset>
+ </copy>
+ </target>
+
+</project>

Back to the top