diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-29 02:26:11 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-29 02:26:57 +0200 |
commit | 8c449c503f4c37f72089a0dc50e00631a22ed12a (patch) | |
tree | e280aabfca0b5c12cafde614883aa05a17fa719e /tests/Makemodule.am | |
parent | d2f27dc653767f36885916d9ecd7b059673d26d8 (diff) |
Add support for reading old style GNU sparse tar file format
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/Makemodule.am')
-rw-r--r-- | tests/Makemodule.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/Makemodule.am b/tests/Makemodule.am index e9cb8c4..004f83c 100644 --- a/tests/Makemodule.am +++ b/tests/Makemodule.am @@ -46,16 +46,20 @@ test_tar_ustar_SOURCES = tests/tar_ustar.c test_tar_ustar_LDADD = libtar.a libutil.a test_tar_ustar_CPPFLAGS = $(AM_CPPFLAGS) -DTESTPATH=$(top_srcdir)/tests/tar +test_tar_sparse_gnu_SOURCES = tests/tar_sparse_gnu.c +test_tar_sparse_gnu_LDADD = libtar.a libutil.a +test_tar_sparse_gnu_CPPFLAGS = $(AM_CPPFLAGS) -DTESTPATH=$(top_srcdir)/tests/tar + check_PROGRAMS += test_canonicalize_name test_mknode_simple test_mknode_slink check_PROGRAMS += test_mknode_reg test_mknode_dir test_gen_inode_table check_PROGRAMS += test_add_by_path test_get_path test_fstree_sort check_PROGRAMS += test_fstree_from_file test_fstree_init test_fstree_xattr -check_PROGRAMS += test_tar_ustar test_tar_pax test_tar_gnu +check_PROGRAMS += test_tar_ustar test_tar_pax test_tar_gnu test_tar_sparse_gnu TESTS += test_canonicalize_name test_mknode_simple test_mknode_slink TESTS += test_mknode_reg test_mknode_dir test_gen_inode_table TESTS += test_add_by_path test_get_path test_fstree_sort test_fstree_from_file TESTS += test_fstree_init test_fstree_xattr test_tar_ustar test_tar_pax -TESTS += test_tar_gnu +TESTS += test_tar_gnu test_tar_sparse_gnu EXTRA_DIST += $(top_srcdir)/tests/tar |