Source
203
203
204
204
<macrodef name="make-tests">
205
205
<!-- Build Zabbix cmocka tests with the specified command line arguments -->
206
206
<attribute name="conf"/>
207
207
<attribute name="conf-name"/>
208
208
<sequential>
209
209
<!-- clean, configure and build -->
210
210
<exec executable="./configure" failonerror="on">
211
211
<arg line="@{conf}"/>
212
212
</exec>
213
+
<exec executable="make" failonerror="on">
214
+
<arg line="build_test_zbxcommon"/>
215
+
</exec>
213
216
<exec executable="make" failonerror="on">
214
217
<arg line="tests_build"/>
215
218
</exec>
216
219
<mkdir dir="tests_results/@{conf-name}"/>
217
220
<exec executable="tests/tests_run.pl" failonerror="off" output="tests_results/@{conf-name}/output.xml">
218
221
<arg line="-x @{conf-name}"/>
219
222
</exec>
220
223
</sequential>
221
224
</macrodef>
222
225