d4573ba10c
* tests/conform/Makefile.am: * tests/conform/test-actor-invariants.c: * tests/conform/test-conform-main.c: Move the actor invariants unit to the conform section of the test suite. * tests/interactive/Makefile.am: * tests/interactive/test-entry-auto.c: * tests/interactive/test-invariants.c: Remove the entry-auto and invariants test, since those two belong to the conform section.
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
noinst_PROGRAMS = test-conformance
|
|
|
|
test_conformance_SOURCES = \
|
|
test-conform-main.c \
|
|
test-conform-common.c \
|
|
test-conform-common.h \
|
|
\
|
|
test-timeline-dup-frames.c \
|
|
test-timeline-interpolate.c \
|
|
test-timeline-rewind.c \
|
|
test-timeline-smoothness.c \
|
|
test-timeline.c \
|
|
test-pick.c \
|
|
test-label-cache.c \
|
|
test-clutter-entry.c \
|
|
test-clutter-rectangle.c \
|
|
test-clutter-fixed.c \
|
|
test-actor-invariants.c
|
|
|
|
# For convenience, this provides a way to easily run individual unit tests:
|
|
.PHONY: wrappers
|
|
wrappers: test-conformance
|
|
for i in `./test-conformance -l`; \
|
|
do \
|
|
ln -sf $(top_srcdir)/tests/conform/wrapper.sh `basename $$i`; \
|
|
done
|
|
# NB: BUILT_SOURCES here a misnomer. We aren't building source, just inserting
|
|
# a phony rule that will generate symlink scripts for running individual tests
|
|
BUILT_SOURCES = wrappers
|
|
|
|
test_conformance_CFLAGS = \
|
|
-I$(top_srcdir)/ \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter \
|
|
$(CLUTTER_CFLAGS)
|
|
test_conformance_LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_FLAVOUR@-@CLUTTER_MAJORMINOR@.la
|
|
|
|
.PHONY: test test-report full-report
|
|
test:
|
|
gtester -o=test-conformance-results.xml ./test-conformance
|
|
|
|
test-report:
|
|
gtester -o=test-conformance-results.xml -k ./test-conformance \
|
|
&& gtester-report test-conformance-results.xml > test-conformance-results.html \
|
|
&& gnome-open ./test-conformance-results.html
|
|
|
|
full-report:
|
|
gtester -o=test-conformance-results.xml -k -m=slow ./test-conformance \
|
|
&& gtester-report test-conformance-results.xml > test-conformance-results.html \
|
|
&& gnome-open ./test-conformance-results.html
|
|
|
|
EXTRA_DIST = ADDING_NEW_TESTS
|
|
|