diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-03-07 11:26:16 -0500 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-10-11 12:06:20 -0400 |
commit | a10ccc9f303ca6b4577afe68cc6b2d8840de5a27 (patch) | |
tree | 16bda943e340e072a20e94b9fe89559f6ead995f /test/Makefile.am | |
parent | 55e4065cbbc5ffe2ce1986b51ef63e8a0b50fccb (diff) |
test: Change composite so that it tests randomly generated images
Previously this test would try to exhaustively test all combinations
of formats and operators, which meant that it would take hours to run.
Instead, generate images randomly and test compositing those.
Cc: chris@chris-wilson.co.uk
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 119ba15..5d2a26a 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -23,7 +23,6 @@ TESTPROGRAMS = \ a1_trap_test_LDADD = $(TEST_LDADD) fetch_test_LDADD = $(TEST_LDADD) -composite_LDADD = $(TEST_LDADD) gradient_crash_test_LDADD = $(TEST_LDADD) trap_crasher_LDADD = $(TEST_LDADD) oob_test_LDADD = $(TEST_LDADD) @@ -49,6 +48,9 @@ alphamap_SOURCES = alphamap.c utils.c utils.h alpha_loop_LDADD = $(TEST_LDADD) alpha_loop_SOURCES = alpha-loop.c utils.c utils.h +composite_LDADD = $(TEST_LDADD) +composite_SOURCES = composite.c utils.c utils.h + # GTK using test programs if HAVE_GTK |