diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-11-01 13:06:47 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-03-30 22:31:30 +0200 |
commit | dba5a02426d942fa5a1a8be83a9f198a5f413d4b (patch) | |
tree | 31249e1196c8b43f4a84036b550d20b399b9dd8e /tests/libfstree/Makemodule.am | |
parent | 2b84065a0f82e71e3f82fcd3148daa29f35a6597 (diff) |
Add a rudimentary unit test for sort files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libfstree/Makemodule.am')
-rw-r--r-- | tests/libfstree/Makemodule.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/libfstree/Makemodule.am b/tests/libfstree/Makemodule.am index d589026..c7ecdd5 100644 --- a/tests/libfstree/Makemodule.am +++ b/tests/libfstree/Makemodule.am @@ -61,6 +61,9 @@ test_fstree_epoch_SOURCES = tests/libfstree/epoch.c test_fstree_epoch_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/lib/fstree test_fstree_epoch_SOURCES += lib/fstree/source_date_epoch.c +test_sort_file_SOURCES = tests/libfstree/sort_file.c +test_sort_file_LDADD = libfstree.a libfstream.a libcompat.a + fstree_fuzz_SOURCES = tests/libfstree/fstree_fuzz.c fstree_fuzz_LDADD = libfstree.a libfstream.a libcompat.a @@ -69,7 +72,8 @@ FSTREE_TESTS = \ test_mknode_reg test_mknode_dir test_gen_inode_numbers \ test_add_by_path test_get_path test_fstree_sort test_fstree_from_file \ test_fstree_init test_filename_sane test_filename_sane_w32 \ - test_fstree_from_dir test_fstree_glob1 test_fstree_epoch + test_fstree_from_dir test_fstree_glob1 test_fstree_epoch \ + test_sort_file if BUILD_TOOLS check_PROGRAMS += $(FSTREE_TESTS) |