test: add a unit test for the event loop post dispatch check

This commit is contained in:
Ander Conselvan de Oliveira 2012-03-14 14:47:40 +02:00 committed by Kristian Høgsberg
parent 3c5d9694db
commit 707623f0cb
2 changed files with 58 additions and 2 deletions

View file

@ -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)