diff options
author | Sven Gothel <[email protected]> | 2010-12-15 03:19:09 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-15 03:19:09 +0100 |
commit | d7613fc21625c999aa4609d098939f548eb42373 (patch) | |
tree | e00745040101e8af81ae8c9ed775ef4ed903b7c8 /make/build-test.xml | |
parent | 2226693372e748ae9866d6eab1fde4f5c0cfc93a (diff) |
cleanup declare.common/init
Diffstat (limited to 'make/build-test.xml')
-rw-r--r-- | make/build-test.xml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index 392da8f06..c5dcfa500 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -27,14 +27,15 @@ <property name="java.dir.bugs" value="${java.dir.test}/bugs"/> <property name="test.archive.name" value="${archive.name}-test-results"/> + <condition property="jvmarg.newt.headless" value="-XstartOnFirstThread -Djava.awt.headless=true"><isset property="isOSX"/></condition> + <condition property="jvmarg.newt.headless" value="-Djava.awt.headless=true"><not><isset property="isOSX"/></not></condition> <property name="batchtest.timeout" value="1800000"/> <!-- 30 min --> </target> <!-- ================================================================== --> <!-- - - Initialize all parameters required for the build and create any - - required directories. + - Initialize all directories for the build --> <target name="init" depends="declare.common"> <!-- Create the required output directories. --> @@ -46,9 +47,6 @@ <fileset file="${build}/${test.archive.name}.zip"/> </delete> <mkdir dir="${results.test}" /> - - <condition property="jvmarg.newt.headless" value="-XstartOnFirstThread -Djava.awt.headless=true"><isset property="isOSX"/></condition> - <condition property="jvmarg.newt.headless" value="-Djava.awt.headless=true"><not><isset property="isOSX"/></not></condition> </target> <!-- ================================================================== --> |