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