summaryrefslogtreecommitdiffstats
path: root/build/test-build-script.xml
blob: fc02e3999a8027926c0d0e5bcf2b1ad4aab2794f (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 v1.0                         -->
<!-- which accompanies this distribution and is available at                   -->
<!-- http://www.eclipse.org/legal/epl-v10.html                                 -->
<!--                                                                           -->
<!-- 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>