diff options
author | Jan Janssen <medhefgo@web.de> | 2013-06-26 13:43:16 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-06-27 01:38:47 -0400 |
commit | 3b18ae6866043ac4d96ee9bcada1a42469c80129 (patch) | |
tree | 969251410732b789aaf024d42aad9a9d2c1ac539 /Makefile.am | |
parent | 4ad490007b70e6ac18d3cb04fa2ed92eba1451fa (diff) |
test: Add list testcase
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 12254e39a8..c64934efa5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1098,7 +1098,8 @@ tests += \ test-prioq \ test-fileio \ test-time \ - test-hashmap + test-hashmap \ + test-list EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1202,6 +1203,15 @@ test_hashmap_CFLAGS = \ test_hashmap_LDADD = \ libsystemd-core.la +test_list_SOURCES = \ + src/test/test-list.c + +test_list_CFLAGS = \ + $(AM_CFLAGS) + +test_list_LDADD = \ + libsystemd-core.la + test_prioq_SOURCES = \ src/test/test-prioq.c |