blob: 610dd66cd93047cf9369c9d067e59a5ab836557d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!-- ========================================================================= -->
<!-- Copyright (c) 2005 Contributors -->
<!-- All rights reserved. -->
<!-- This program and the accompanying materials are made available -->
<!-- under the terms of the Eclipse Public License v 2.0 -->
<!-- which accompanies this distribution and is available at -->
<!-- https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt -->
<!-- -->
<!-- Contributors: (See CVS checkin's) -->
<!-- Wes Isberg initial implementation -->
<!-- ========================================================================= -->
<project name="test-build-script" default="all" basedir=".">
<property name="modules.dir" location="${basedir}/.."/>
<import file="${modules.dir}/build/build-properties.xml"/>
<target name="all" depends="failures"/>
<target name="failures" depends="init-properties">
<delete file="${aj.failure.file}"/>
<echo message="-> no false negative (no file)"/>
<antcall target="fail-if-failures"/>
<touch file="${aj.failure.file}"/>
<echo message="-> no false negative (empty file)"/>
<antcall target="fail-if-failures"/>
<echo message="-> no false negative (unset Property)"/>
<report-if-failed text="not error text" property="unsetProperty"/>
<antcall target="fail-if-failures"/>
<echo message="-> true negative (set Property)"/>
<property name="setProperty" value="."/>
<report-if-failed text="error text" property="setProperty"/>
<antcall target="fail-if-failures"/>
<loadfile property="emit" srcfile="${aj.failure.file}"/>
<echo message="-> file contents: ${emit}"/>
</target>
</project>
|