aboutsummaryrefslogtreecommitdiff
path: root/tests/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-03-18 18:44:01 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-03-18 18:51:26 +0100
commite38fc08b2fc253a8e19450cbe3f4e8dcba654da9 (patch)
treeed983b03fefb7ad5a62d99763b02dc96f78085b0 /tests/Makemodule.am
parent0b5bcb0393df10ab671cfc76209b9b8b565323f1 (diff)
Add a test for the minimal rb-tree implementation
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/Makemodule.am')
-rw-r--r--tests/Makemodule.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/Makemodule.am b/tests/Makemodule.am
index 83f8666..8016c83 100644
--- a/tests/Makemodule.am
+++ b/tests/Makemodule.am
@@ -6,11 +6,15 @@ test_str_table_LDADD = libutil.a libcompat.a
test_str_table_CPPFLAGS = $(AM_CPPFLAGS) -DTESTPATH=$(top_srcdir)/tests
test_str_table_CPPFLAGS += -I$(top_srcdir)/lib/sqfs
+test_rbtree_SOURCES = tests/rbtree.c
+test_rbtree_LDADD = libutil.a libcompat.a
+test_rbtree_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/lib/sqfs
+
test_abi_SOURCES = tests/abi.c
test_abi_LDADD = libsquashfs.la
-check_PROGRAMS += test_canonicalize_name test_str_table test_abi
-TESTS += test_canonicalize_name test_str_table test_abi
+check_PROGRAMS += test_canonicalize_name test_str_table test_abi test_rbtree
+TESTS += test_canonicalize_name test_str_table test_abi test_rbtree
if BUILD_TOOLS
test_mknode_simple_SOURCES = tests/mknode_simple.c