summaryrefslogtreecommitdiffstats
path: root/src/samples/check.ant
blob: f0e1c1469a4cd3be6120038c7544e66ba4ed858e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?xml version="1.0"?>
<!--

Copyright 2004 The Ant-Contrib project

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->

<!--  

    build file for check 0.9.3 (http://check.sourceforge.net)
    a C unit test framework for POSIX-like OS.
    
-->    
<project name="check" default="test-all">

<property name="base.dir" value="."/>
<property name="debug" value="true"/>
<property name="compiler" value="gcc"/>
<property name="src.dir" location="${base.dir}/src"/>
<property name="tests.dir" location="${base.dir}/tests"/>
<property name="money.dir" location="${base.dir}/doc/money"/>
<property name="build.dir" location="build"/>
<property name="major" value="0"/>
<property name="minor" value="9"/>
<property name="build" value="3"/>
<!-- specify api="unix" or api="win32" override platform default -->
<property name="api" value="default"/>

<taskdef resource="cpptasks.tasks"/>
<typedef resource="cpptasks.types"/>

<target name="usage">
	<echo message="Builds check (http://check.sourceforge.net)."/>
	<echo message="Usage:"/>
	<echo message="ant -f cppunit.ant -Dbase.dir=c:/check-0.9.3"/>
	<echo message="    -Dcompiler=[gcc | icc  ...]"/>
</target>

  <target name="init">
    <mkdir dir="${build.dir}"/>
    <property name="obj.dir" value="${build.dir}/obj"/>
    <mkdir dir="${obj.dir}"/>
    <condition property="is-gcc">
      <or>
        <equals arg1="${compiler}" arg2="gcc"/>
        <equals arg1="${compiler}" arg2="g++"/>
      </or>
    </condition>
    <condition property="is-msvc">
      <or>
        <equals arg1="${compiler}" arg2="msvc"/>
      </or>
    </condition>
    <property environment="env"/>
    <!--  in case not set in environment, use an insignificant value -->
    <property name="env.LD_LIBRARY_PATH" value="."/>
    <available property="configure-available" 
               file="${base.dir}/configure"/>
    <available property="config-available" 
               file="${base.dir}/config.h"/>
  </target>

<target name="autogen" 
        depends="init" 
	      unless="configure-available">
	<exec dir="${base.dir}" executable="bash">
		<arg value="autogen.sh"/>
	</exec>
</target>


<target name="configure" 
        depends="autogen" 
        unless="config-available">
	<exec dir="${base.dir}" executable="bash">
		<arg value="configure"/>
	</exec>
</target>

<target name="clean">
	<delete dir="${build.dir}"/>
</target>


<target name="static-lib" depends="configure">
	<mkdir dir="${obj.dir}"/>
	<cc subsystem="console" 
		outfile="${build.dir}/check"
		objdir="${obj.dir}" 
		outtype="static" 
		debug="${debug}"
		warnings="diagnostic"
	    optimize="speed"
		name="${compiler}">
		<fileset dir="${src.dir}" includes="*.c"/>
		<includepath path="${base.dir};${src.dir}"/>
		<defineset define="WIN32" if="is-win32"/>
		<defineset define="HAVE_CONFIG_H"/>
		<versioninfo refid="check-version"/>
	</cc>
</target>

<target name="build-money" depends="static-lib">
	<cc outfile="${build.dir}/money" 
	    outtype="executable" 
	    subsystem="console" 
	    objdir="${obj.dir}" 
	    debug="${debug}"
	    warnings="diagnostic"
	    name="${compiler}"
	    outputfileproperty="money.exe">
		<fileset dir="${money.dir}" includes="*.c"/>
		<includepath path="${src.dir}"/>
		<libset dir="${build.dir}" libs="check"/>
		<defineset define="WIN32" if="is-win32"/>
		<versioninfo refid="check-version"/>
  </cc>
</target>


<target name="test-money" depends="build-money">
	<exec dir="${build.dir}" 
	      executable="${money.exe}"
	      failonerror="false"/> 
</target>

<target name="build-check_check" depends="static-lib">

    <!--  test expected file of test failure not to include
             path, this change checks that the last 17 characters
             of the file are check_check_sub.c   -->
    <replace file="${tests.dir}/check_check_master.c"
          token='strcmp(tr_lfile(tr_fail_array[i])'
          value="strcmp(strchr(tr_lfile(tr_fail_array[i]), 0) - 17"/>

    <!--   multiple tests expected error message not to include
                 path to source file, changed hardcoded "check_check_fixture.c"
                 to __FILE__   -->
    <replace file="${tests.dir}/check_check_fixture.c"
          token='"check_check_fixture.c:'
          value='__FILE__ ":'/>
          
	<cc outfile="${build.dir}/check_check" 
	    outtype="executable" 
	    subsystem="console" 
	    objdir="${obj.dir}" 
	    debug="${debug}"
	    warnings="diagnostic"
	    name="${compiler}"
	    outputfileproperty="check_check.exe">
		<fileset dir="${tests.dir}" includes="check_check*.c, check_list.c"/>
		<includepath path="${src.dir};${tests.dir}"/>
		<libset dir="${build.dir}" libs="check"/>
		<defineset define="WIN32" if="is-win32"/>
		<versioninfo refid="check-version"/>
  </cc>
</target>


<target name="test-check_check" depends="build-check_check">
	<exec dir="${tests.dir}" 
	      executable="${check_check.exe}"
	      failonerror="true"/> 
</target>

<target name="build-check_stress" depends="static-lib">
	<cc outfile="${build.dir}/check_stress" 
	    outtype="executable" 
	    subsystem="console" 
	    objdir="${obj.dir}" 
	    debug="${debug}"
	    warnings="diagnostic"
	    name="${compiler}"
	    outputfileproperty="check_stress.exe">
		<fileset dir="${tests.dir}" includes="check_stress.c"/>
		<includepath path="${src.dir};${tests.dir}"/>
		<libset dir="${build.dir}" libs="check"/>
		<defineset define="WIN32" if="is-win32"/>
		<versioninfo refid="check-version"/>
  </cc>
</target>


<target name="test-check_stress" depends="build-check_stress">
	<exec dir="${tests.dir}" 
	      executable="${check_stress.exe}"
	      failonerror="true"/> 
</target>

			    
<target name="all" depends="build-money, build-check_check, build-check_stress"/>

<target name="test-all" depends="test-money, test-check_check, test-check_stress"/>
			    
</project>