Admin User, erstellt 13. Dez. 2024
<project name="common_master" default="main">
<target name="main" depends="
comply_reference, comply_frequent,
bench_core, bench_crypt">
</target>
<!-- -->
<!-- Sub Ants -->
<!-- -->
<target name="comply_reference" depends="prepare">
<ant dir="../tests/reference"
antfile="run.xml"/>
</target>
<target name="comply_frequent" depends="prepare">
<ant dir="../tests/frequent"
antfile="run.xml"/>
</target>
<target name="bench_core" depends="prepare">
<ant dir="../tests/core"
antfile="run.xml"/>
</target>
<target name="bench_crypt" depends="prepare">
<ant dir="../tests/crypt"
antfile="run.xml"/>
</target>
<!-- -->
<!-- Some Extra Testing -->
<!-- -->
<target name="comply_reference_jek" depends="prepare">
<ant dir="../tests/reference"
antfile="run.xml"
target="main_jek"/>
</target>
<target name="comply_frequent_jek" depends="prepare">
<ant dir="../tests/frequent"
antfile="run.xml"
target="main_jek"/>
</target>
<target name="bench_core_jek" depends="prepare">
<ant dir="../tests/core"
antfile="run.xml"
target="main_jek"/>
</target>
<target name="bench_crypt_jek" depends="prepare">
<ant dir="../tests/crypt"
antfile="run.xml"
target="main_jek"/>
</target>
<!-- -->
<!-- Some Extra Testing -->
<!-- -->
<target name="comply_reference_alt" depends="prepare">
<ant dir="../tests/reference"
antfile="run.xml"
target="main_alt"/>
</target>
<target name="comply_frequent_alt" depends="prepare">
<ant dir="../tests/frequent"
antfile="run.xml"
target="main_alt"/>
</target>
<target name="bench_core_alt" depends="prepare">
<ant dir="../tests/core"
antfile="run.xml"
target="main_alt"/>
</target>
<target name="bench_crypt_alt" depends="prepare">
<ant dir="../tests/crypt"
antfile="run.xml"
target="main_alt"/>
</target>
<!-- -->
<!-- Config & Envir -->
<!-- -->
<target name="prepare" depends="prepare_envir, prepare_config">
</target>
<target name="prepare_envir" depends="prepare_envir_check,
prepare_envir_make">
</target>
<target name="prepare_envir_check">
<available file="envir.xml" property="prepare_envir_present"/>
</target>
<target name="prepare_envir_make" unless="prepare_envir_present">
<copy tofile="envir.xml" file="template/envir.xml"/>
</target>
<target name="prepare_config" depends="prepare_config_check,
prepare_config_make">
</target>
<target name="prepare_config_check">
<available file="config.p" property="prepare_config_present"/>
</target>
<target name="prepare_config_make" unless="prepare_config_present">
<copy tofile="config.p" file="template/config.p"/>
</target>
</project>