aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
diff options
context:
space:
mode:
authorAnder Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com>2012-03-14 14:47:40 +0200
committerKristian Høgsberg <krh@bitplanet.net>2012-03-20 15:49:27 -0400
commit707623f0cb21391f0f7e62c79cb0df9cb6329aba (patch)
tree6532082e0973331b6b9e79560d93f2c0f3374d91 /tests/Makefile.am
parentevent-loop: always do the post-dispatch check (diff)
downloadwayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar.gz
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar.bz2
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar.lz
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar.xz
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.tar.zst
wayland-707623f0cb21391f0f7e62c79cb0df9cb6329aba.zip
test: add a unit test for the event loop post dispatch check
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r--tests/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index ae82671..cf81c0e 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,13 +1,16 @@
TESTS = $(check_PROGRAMS)
-check_PROGRAMS = array-test map-test list-test connection-test
+check_PROGRAMS = array-test map-test list-test connection-test event-loop-test
map_test_SOURCES = map-test.c test-runner.c test-runner.h
array_test_SOURCES = array-test.c test-runner.c
list_test_SOURCES = list-test.c test-runner.c
connection_test_SOURCES = connection-test.c test-runner.c
+event_loop_test_SOURCES = event-loop-test.c test-runner.c
AM_CFLAGS = $(GCC_CFLAGS)
-LDADD = $(top_builddir)/src/libwayland-util.la -lrt $(FFI_LIBS)
+LDADD = $(top_builddir)/src/libwayland-util.la \
+ $(top_builddir)/src/libwayland-server.la \
+ -lrt $(FFI_LIBS)