1 # GLIB - Library of useful C routines
3 #GTESTER = gtester # for non-GLIB packages
4 GTESTER = $(top_builddir)/glib/gtester # for the GLIB package
5 GTESTER_REPORT = $(top_builddir)/glib/gtester-report # for the GLIB package
7 # initialize variables for unconditional += appending
13 # test: run all tests in cwd and subdirs
16 @test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
17 @ for subdir in $(SUBDIRS) . ; do \
18 test "$$subdir" = "." -o "$$subdir" = "po" || \
19 ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
23 # test-report: run tests in subdirs and generate report
24 # perf-report: run tests in subdirs with -m perf and generate report
25 # full-report: like test-report: with -m perf and -m slow
26 test-report perf-report full-report: ${TEST_PROGS}
27 @test -z "${TEST_PROGS}" || { \
29 test-report) test_options="-k";; \
30 perf-report) test_options="-k -m=perf";; \
31 full-report) test_options="-k -m=perf -m=slow";; \
33 if test -z "$$GTESTER_LOGDIR" ; then \
34 ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
35 elif test -n "${TEST_PROGS}" ; then \
36 ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
39 @ ignore_logdir=true ; \
40 if test -z "$$GTESTER_LOGDIR" ; then \
41 GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
42 ignore_logdir=false ; \
44 for subdir in $(SUBDIRS) . ; do \
45 test "$$subdir" = "." -o "$$subdir" = "po" || \
46 ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
48 $$ignore_logdir || { \
49 echo '<?xml version="1.0"?>' > $@.xml ; \
50 echo '<report-collection>' >> $@.xml ; \
51 for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
52 sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
55 echo '</report-collection>' >> $@.xml ; \
56 rm -rf "$$GTESTER_LOGDIR"/ ; \
57 ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
59 .PHONY: test test-report perf-report full-report
60 # run make test as part of make check