2024-02-12 10:09:10 -05:00
|
|
|
## SPDX-License-Identifier: 0BSD
|
2009-04-13 04:27:40 -04:00
|
|
|
## Author: Lasse Collin
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2008-01-17 17:50:29 -05:00
|
|
|
EXTRA_DIST = \
|
|
|
|
files \
|
2018-11-02 14:18:45 -04:00
|
|
|
ossfuzz \
|
2022-06-02 13:25:21 -04:00
|
|
|
tuktest.h \
|
2008-01-17 17:50:29 -05:00
|
|
|
tests.h \
|
|
|
|
test_files.sh \
|
|
|
|
test_compress.sh \
|
2022-05-23 14:17:47 -04:00
|
|
|
test_compress_prepared_bcj_sparc \
|
|
|
|
test_compress_prepared_bcj_x86 \
|
|
|
|
test_compress_generated_abc \
|
|
|
|
test_compress_generated_random \
|
|
|
|
test_compress_generated_text \
|
2011-07-31 04:01:47 -04:00
|
|
|
test_scripts.sh \
|
2023-11-17 07:35:11 -05:00
|
|
|
test_suffix.sh \
|
2008-01-17 17:50:29 -05:00
|
|
|
bcj_test.c \
|
|
|
|
compress_prepared_bcj_sparc \
|
2014-06-13 12:21:54 -04:00
|
|
|
compress_prepared_bcj_x86 \
|
|
|
|
xzgrep_expected_output
|
2007-12-08 17:42:33 -05:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
2009-06-26 07:47:31 -04:00
|
|
|
-I$(top_srcdir)/src/common \
|
|
|
|
-I$(top_srcdir)/src/liblzma/api \
|
2023-09-25 12:47:26 -04:00
|
|
|
-I$(top_srcdir)/src/liblzma
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2009-06-26 07:47:31 -04:00
|
|
|
LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2009-06-26 07:47:31 -04:00
|
|
|
LDADD += $(LTLIBINTL)
|
|
|
|
|
2007-12-08 17:42:33 -05:00
|
|
|
check_PROGRAMS = \
|
2008-01-17 17:50:29 -05:00
|
|
|
create_compress_files \
|
2007-12-08 17:42:33 -05:00
|
|
|
test_check \
|
2022-06-10 09:35:18 -04:00
|
|
|
test_hardware \
|
2007-12-08 17:42:33 -05:00
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
2023-02-02 11:32:47 -05:00
|
|
|
test_filter_str \
|
2007-12-08 17:42:33 -05:00
|
|
|
test_block_header \
|
2012-05-28 13:42:11 -04:00
|
|
|
test_index \
|
2022-12-28 11:25:18 -05:00
|
|
|
test_index_hash \
|
2022-06-11 23:31:40 -04:00
|
|
|
test_bcj_exact_size \
|
2022-09-28 04:12:07 -04:00
|
|
|
test_memlimit \
|
2022-12-21 08:12:03 -05:00
|
|
|
test_lzip_decoder \
|
2024-03-08 20:49:55 -05:00
|
|
|
test_vli
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2008-01-07 06:49:19 -05:00
|
|
|
TESTS = \
|
2008-01-17 17:50:29 -05:00
|
|
|
test_check \
|
2022-06-10 09:35:18 -04:00
|
|
|
test_hardware \
|
2008-01-17 17:50:29 -05:00
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
2023-02-02 11:32:47 -05:00
|
|
|
test_filter_str \
|
2008-01-17 17:50:29 -05:00
|
|
|
test_block_header \
|
|
|
|
test_index \
|
2022-12-28 11:25:18 -05:00
|
|
|
test_index_hash \
|
2012-05-28 13:42:11 -04:00
|
|
|
test_bcj_exact_size \
|
2022-09-28 04:12:07 -04:00
|
|
|
test_memlimit \
|
2022-12-21 08:12:03 -05:00
|
|
|
test_lzip_decoder \
|
2022-06-11 23:31:40 -04:00
|
|
|
test_vli \
|
2008-08-28 15:53:15 -04:00
|
|
|
test_files.sh \
|
2023-11-17 07:35:11 -05:00
|
|
|
test_suffix.sh \
|
2022-05-23 14:17:47 -04:00
|
|
|
test_compress_prepared_bcj_sparc \
|
|
|
|
test_compress_prepared_bcj_x86 \
|
|
|
|
test_compress_generated_abc \
|
|
|
|
test_compress_generated_random \
|
|
|
|
test_compress_generated_text
|
2011-09-06 05:03:41 -04:00
|
|
|
|
2024-03-08 20:49:55 -05:00
|
|
|
if COND_MICROLZMA
|
|
|
|
check_PROGRAMS += test_microlzma
|
|
|
|
TESTS += test_microlzma
|
|
|
|
endif
|
|
|
|
|
2011-09-06 05:03:41 -04:00
|
|
|
if COND_SCRIPTS
|
|
|
|
TESTS += test_scripts.sh
|
|
|
|
endif
|
2008-01-17 17:50:29 -05:00
|
|
|
|
|
|
|
clean-local:
|
2014-06-13 11:58:22 -04:00
|
|
|
-rm -f compress_generated_* \
|
|
|
|
xzgrep_test_output xzgrep_test_1.xz xzgrep_test_2.xz
|