diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-05 15:53:21 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-06 22:08:36 +0100 |
commit | b950412ca3a91aa37349cf51ebe98cc84767d448 (patch) | |
tree | e3bb062114d019984321a5a21b29818c88c36795 /tests/libfstree/Makemodule.am | |
parent | 3fc6bf24b5cc071fc323f08ece541e37578f6369 (diff) |
Cleanup: add some structure to the test directory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libfstree/Makemodule.am')
-rw-r--r-- | tests/libfstree/Makemodule.am | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/tests/libfstree/Makemodule.am b/tests/libfstree/Makemodule.am new file mode 100644 index 0000000..4dc6da1 --- /dev/null +++ b/tests/libfstree/Makemodule.am @@ -0,0 +1,76 @@ +FSTDATADIR=$(top_srcdir)/tests/libfstree + +test_canonicalize_name_SOURCES = tests/libfstree/canonicalize_name.c +test_canonicalize_name_SOURCES += tests/test.h +test_canonicalize_name_LDADD = libfstree.a + +test_mknode_simple_SOURCES = tests/libfstree/mknode_simple.c tests/test.h +test_mknode_simple_LDADD = libfstree.a libcompat.a + +test_mknode_slink_SOURCES = tests/libfstree/mknode_slink.c tests/test.h +test_mknode_slink_LDADD = libfstree.a libcompat.a + +test_mknode_reg_SOURCES = tests/libfstree/mknode_reg.c tests/test.h +test_mknode_reg_LDADD = libfstree.a libcompat.a + +test_mknode_dir_SOURCES = tests/libfstree/mknode_dir.c tests/test.h +test_mknode_dir_LDADD = libfstree.a libcompat.a + +test_gen_inode_numbers_SOURCES = tests/libfstree/gen_inode_numbers.c +test_gen_inode_numbers_SOURCES += tests/test.h +test_gen_inode_numbers_LDADD = libfstree.a libcompat.a + +test_add_by_path_SOURCES = tests/libfstree/add_by_path.c tests/test.h +test_add_by_path_LDADD = libfstree.a libcompat.a + +test_get_path_SOURCES = tests/libfstree/get_path.c tests/test.h +test_get_path_LDADD = libfstree.a libcompat.a + +test_fstree_sort_SOURCES = tests/libfstree/fstree_sort.c tests/test.h +test_fstree_sort_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/lib/fstree +test_fstree_sort_LDADD = libfstree.a libfstream.a libcompat.a + +test_fstree_from_file_SOURCES = tests/libfstree/fstree_from_file.c tests/test.h +test_fstree_from_file_CPPFLAGS = $(AM_CPPFLAGS) +test_fstree_from_file_CPPFLAGS += -DTESTPATH=$(FSTDATADIR)/fstree1.txt +test_fstree_from_file_LDADD = libfstree.a libfstream.a libcompat.a + +test_fstree_glob1_SOURCES = tests/libfstree/fstree_glob1.c tests/test.h +test_fstree_glob1_CPPFLAGS = $(AM_CPPFLAGS) -DTESTPATH=$(FSTDATADIR) +test_fstree_glob1_LDADD = libfstree.a libfstream.a libcompat.a + +test_fstree_from_dir_SOURCES = tests/libfstree/fstree_from_dir.c tests/test.h +test_fstree_from_dir_CPPFLAGS = $(AM_CPPFLAGS) +test_fstree_from_dir_CPPFLAGS += -DTESTPATH=$(top_srcdir)/tests/libtar/data +test_fstree_from_dir_LDADD = libfstree.a libcompat.a + +test_fstree_init_SOURCES = tests/libfstree/fstree_init.c tests/test.h +test_fstree_init_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/lib/fstree +test_fstree_init_LDADD = libfstree.a libfstream.a libcompat.a + +test_filename_sane_SOURCES = tests/libfstree/filename_sane.c +test_filename_sane_SOURCES += lib/fstree/filename_sane.c + +test_filename_sane_w32_SOURCES = tests/libfstree/filename_sane.c +test_filename_sane_w32_SOURCES += lib/fstree/filename_sane.c +test_filename_sane_w32_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_WIN32=1 + +fstree_fuzz_SOURCES = tests/libfstree/fstree_fuzz.c +fstree_fuzz_LDADD = libfstree.a libfstream.a libcompat.a + +FSTREE_TESTS = \ + test_canonicalize_name test_mknode_simple test_mknode_slink \ + 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 + +if BUILD_TOOLS +check_PROGRAMS += $(FSTREE_TESTS) +noinst_PROGRAMS += fstree_fuzz + +TESTS += $(FSTREE_TESTS) +endif + +EXTRA_DIST += $(FSTDATADIR)/fstree1.txt +EXTRA_DIST += $(FSTDATADIR)/fstree_glob1.txt $(FSTDATADIR)/fstree_glob2.txt |