diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-16 15:41:57 +0100 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-18 00:58:07 +0100 | 
| commit | da6eadc840716eb29b0175f39b2790bba166db4a (patch) | |
| tree | 2da0a94126432e7af409ed809ea3476a1e44597c /tests/libutil/Makemodule.am | |
| parent | 0f68ca18f491b4e53cec788b327a752cbeb43377 (diff) | |
Add a single, central hex blob decoder
Since we need it twice (once for tar, once for the filemap xattr
parser), add a single, central implementation to libutil, add a
unit test for that implementation and then use it in both libtar
and gensquashfs.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libutil/Makemodule.am')
| -rw-r--r-- | tests/libutil/Makemodule.am | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/tests/libutil/Makemodule.am b/tests/libutil/Makemodule.am index 2ea2d43..5a69de4 100644 --- a/tests/libutil/Makemodule.am +++ b/tests/libutil/Makemodule.am @@ -30,10 +30,13 @@ test_filename_sane_w32_LDADD = libcompat.a  test_sdate_epoch_SOURCES = tests/libutil/epoch.c  test_sdate_epoch_LDADD = libutil.a libcompat.a +test_hex_decode_SOURCES = tests/libutil/hex_decode.c +test_hex_decode_LDADD = libutil.a libcompat.a +  LIBUTIL_TESTS = \  	test_str_table test_rbtree test_xxhash test_threadpool test_ismemzero \  	test_canonicalize_name test_filename_sane test_filename_sane_w32 \ -	test_sdate_epoch +	test_sdate_epoch test_hex_decode  check_PROGRAMS += $(LIBUTIL_TESTS)  TESTS += $(LIBUTIL_TESTS) | 
