diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-05-02 23:50:49 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-05-03 00:19:51 +0200 |
commit | 9341a4a167f348fc42cdd6f7ac8763bf3a0c5911 (patch) | |
tree | 97c1bf1ea3866957a7f67825114f05ccfceb2c34 /Makefile.am | |
parent | febfd508297280846588f0e97514065ac23945bc (diff) |
test-hashmap.c: add unit-test for hashmap
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 9e0f5fb20e..d50ab3d704 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1102,7 +1102,8 @@ tests += \ test-cgroup-util \ test-prioq \ test-fileio \ - test-time + test-time \ + test-hashmap EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1193,6 +1194,15 @@ test_util_CFLAGS = \ test_util_LDADD = \ libsystemd-core.la +test_hashmap_SOURCES = \ + src/test/test-hashmap.c + +test_hashmap_CFLAGS = \ + $(AM_CFLAGS) + +test_hashmap_LDADD = \ + libsystemd-core.la + test_prioq_SOURCES = \ src/test/test-prioq.c |