]> Pileus Git - ~andy/gtk/blob - Makefile.decl
skip tests if gdktarget!=x11, since GUI tests need Xvfb. only start Xvfb
[~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 SKIP_GDKTARGET = \
20         test "$(gdktarget)" != "x11" \
21         && echo "Gtk+Tests:INFO: Skipping GUI tests for non-X11 target."
22 XVFB_START = \
23         ${XVFB} -help 2>/dev/null 1>&2 \
24         && XID=`for id in $(XIDS) ; do test -e /tmp/.X$$id-lock || { echo $$id; exit 0; }; done; exit 1` \
25         && { ${XVFB} :$$XID -nolisten tcp -auth /dev/null >/dev/null 2>&1 & \
26                trap "kill -15 $$! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } \
27         || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \
28         && DISPLAY=:$$XID && export DISPLAY
29 # call as: $(XVFB_START) && someprogram
30
31 # test: run all tests in cwd and subdirs
32 test:   ${TEST_PROGS}
33         @$(SKIP_GDKTARGET) || test -z "${TEST_PROGS}" || { \
34           $(XVFB_START) && { set -e; ${GTESTER} --verbose ${TEST_PROGS}; }; \
35         }
36         @ for subdir in $(SUBDIRS) ; do \
37             test "$$subdir" = "." -o "$$subdir" = "po" -o "$$subdir" = "po-properties" || \
38             ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
39           done
40 # test-report: run tests in subdirs and generate report
41 # perf-report: run tests in subdirs with -m perf and generate report
42 # full-report: like test-report: with -m perf and -m slow
43 test-report perf-report full-report:    ${TEST_PROGS}
44         @ ignore_logdir=true ; \
45           if test -z "$$GTESTER_LOGDIR" ; then \
46             GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
47             ignore_logdir=false ; \
48           fi ; \
49           for subdir in $(SUBDIRS) ; do \
50             test "$$subdir" = "." -o "$$subdir" = "po" -o "$$subdir" = "po-properties" || \
51             ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
52           done ; \
53           $(SKIP_GDKTARGET) || test -z "${TEST_PROGS}" || { \
54             case $@ in \
55             test-report) test_options="-k";; \
56             perf-report) test_options="-k -m=perf";; \
57             full-report) test_options="-k -m=perf -m=slow";; \
58             esac ; \
59             $(XVFB_START) && { \
60               set -e; \
61               if test -z "$$GTESTER_LOGDIR" ; then \
62                 ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
63               elif test -n "${TEST_PROGS}" ; then \
64                 ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
65               fi ; \
66             }; \
67           }; \
68           $$ignore_logdir || { \
69             echo '<?xml version="1.0"?>' > $@.xml ; \
70             echo '<report-collection>'  >> $@.xml ; \
71             for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
72               sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
73             done ; \
74             echo >> $@.xml ; \
75             echo '</report-collection>' >> $@.xml ; \
76             rm -rf "$$GTESTER_LOGDIR"/ ; \
77           }
78 .PHONY: test test-report perf-report full-report
79 # run make test as part of make check
80 check-local: test