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