diff options
author | Sven Gothel <[email protected]> | 2012-03-28 18:42:28 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-28 18:42:28 +0200 |
commit | 0f486e656651c193fdad6baba4fcdffbebb1526e (patch) | |
tree | 74a43916cc14e029beea5de8197ec626c69922f7 | |
parent | 133db9f855b351e25c1b9ebf752fdb05e03ae36c (diff) |
Dump Local Info on build machine during junit.compile
-rw-r--r-- | make/build-test.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index 56c10df..16f9659 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -220,7 +220,13 @@ <target name="junit.compile" depends="junit.compile.check" unless="junit.compile.skip"> <mkdir dir="${build}/test/build/classes"/> - <antcall target="android.package" inheritRefs="true"/> + <antcall target="android.package" inheritRefs="true"/> <!-- implies java.build --> + <antcall target="dump.localinfo" inheritRefs="true"/> + </target> + + <target name="dump.localinfo"> + <echo message="Dump Local Info" /> + <java fork="false" failonerror="no" classname="com.jogamp.common.util.TestSystemPropsAndEnvs" classpath="${junit.run.jars}"/> </target> <target name="junit.run.remote.ssh" if="isCrosscompilation" unless="isAndroid"> |