]> Pileus Git - ~andy/gtk/blob - Makefile.decl
replaced seq(1) invokation for X11 ids with a hardcoded set of likely
[~andy/gtk] / Makefile.decl
1 # GTK+ - The GIMP Toolkit
2
3 GTESTER = gtester                       # for non-GLIB packages
4
5 # initialize variables for unconditional += appending
6 EXTRA_DIST =
7 TEST_PROGS =
8
9 ### testing rules
10
11 # Xvfb based test rules
12 XVFB = Xvfb
13 XIDS = 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 \
14    491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 \
15    991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 \
16   1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 \
17   9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 \
18   9995 9996 9997 9998 9999
19 XVFB_START = \
20         ${XVFB} -help 2>/dev/null 1>&2 \
21         && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \
22         && { ${XVFB} :$$XID -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \
23                trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \
24         || { echo Failed to start Xvfb environment for testing; exit 1; } \
25         && set -e ; DISPLAY=:$$XID; export DISPLAY
26 # call as: $(XVFB_START) && someprogram
27
28 # test: run all tests in cwd and subdirs
29 test:   ${TEST_PROGS}
30         @$(XVFB_START) && { \
31           test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS} ; \
32         }
33         @ for subdir in $(SUBDIRS) ; do \
34             test "$$subdir" = "." -o "$$subdir" = "po" -o "$$subdir" = "po-properties" || \
35             ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
36           done
37 # test-report: run tests in subdirs and generate report
38 # perf-report: run tests in subdirs with -m perf and generate report
39 # full-report: like test-report: with -m perf and -m slow
40 test-report perf-report full-report:    ${TEST_PROGS}
41         @ ignore_logdir=true ; \
42           if test -z "$$GTESTER_LOGDIR" ; then \
43             GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
44             ignore_logdir=false ; \
45           fi ; \
46           for subdir in $(SUBDIRS) ; do \
47             test "$$subdir" = "." -o "$$subdir" = "po" -o "$$subdir" = "po-properties" || \
48             ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
49           done ; \
50           test -z "${TEST_PROGS}" || { \
51             case $@ in \
52             test-report) test_options="-k";; \
53             perf-report) test_options="-k -m=perf";; \
54             full-report) test_options="-k -m=perf -m=slow";; \
55             esac ; \
56             $(XVFB_START) && { \
57               if test -z "$$GTESTER_LOGDIR" ; then \
58                 ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
59               elif test -n "${TEST_PROGS}" ; then \
60                 ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
61               fi ; \
62             }; \
63           }; \
64           $$ignore_logdir || { \
65             echo '<?xml version="1.0"?>' > $@.xml ; \
66             echo '<report-collection>'  >> $@.xml ; \
67             for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
68               sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
69             done ; \
70             echo >> $@.xml ; \
71             echo '</report-collection>' >> $@.xml ; \
72             rm -rf "$$GTESTER_LOGDIR"/ ; \
73           }
74 .PHONY: test test-report perf-report full-report
75 # run make test as part of make check
76 check-local: test