1# GLIB - Library of useful C routines 2 3#GTESTER = gtester # for non-GLIB packages 4GTESTER = $(top_builddir)/glib/gtester # for the GLIB package 5GTESTER_REPORT = $(top_builddir)/glib/gtester-report # for the GLIB package 6 7# initialize variables for unconditional += appending 8EXTRA_DIST = 9TEST_PROGS = 10 11### testing rules 12 13# test: run all tests in cwd and subdirs 14test: ${TEST_PROGS} 15if OS_UNIX 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 $? ; \ 20 done 21endif 22 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 26test-report perf-report full-report: ${TEST_PROGS} 27 @test -z "${TEST_PROGS}" || { \ 28 case $@ in \ 29 test-report) test_options="-k";; \ 30 perf-report) test_options="-k -m=perf";; \ 31 full-report) test_options="-k -m=perf -m=slow";; \ 32 esac ; \ 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} ; \ 37 fi ; \ 38 } 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 ; \ 43 fi ; \ 44 for subdir in $(SUBDIRS) . ; do \ 45 test "$$subdir" = "." -o "$$subdir" = "po" || \ 46 ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \ 47 done ; \ 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 ; \ 53 done ; \ 54 echo >> $@.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 ; \ 58 } 59.PHONY: test test-report perf-report full-report 60# run make test as part of make check 61check-local: test 62