62d2569954
We use a simple test-runner helper that runs each test in a separate process and reports the pass/fail rate at the end.
9 lines
205 B
Makefile
9 lines
205 B
Makefile
TESTS = $(check_PROGRAMS)
|
|
|
|
check_PROGRAMS = array-test map-test
|
|
|
|
map_test_SOURCES = map-test.c test-runner.c
|
|
array_test_SOURCES = array-test.c test-runner.c
|
|
|
|
LDADD = $(top_builddir)/src/libwayland-util.la
|