summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-01-11 01:18:50 +0800
committerJia Tan <jiat0218@gmail.com>2023-01-11 01:18:50 +0800
commit765354b50c2886fc0d294d6be3b207f7ae2ada70 (patch)
tree713a1414936fb6d1e40846c8afb3ccc06ac15d6d /tests
parent7c23c05befdcc73231c0d6632a7d943dbeaea1aa (diff)
downloadxz-765354b50c2886fc0d294d6be3b207f7ae2ada70.tar.gz
Tests: Fix unused function warning in test_block_header.
One of the global arrays of filters was only used in a test that required both encoders and decoders to be configured in the build.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_block_header.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_block_header.c b/tests/test_block_header.c
index 6b42df2..747925b 100644
--- a/tests/test_block_header.c
+++ b/tests/test_block_header.c
@@ -35,6 +35,9 @@ static lzma_filter filters_one[2] = {
};
+// These filters are only used in test_lzma_block_header_decode()
+// which only runs if encoders and decoders are configured.
+#ifdef HAVE_DECODERS
static lzma_filter filters_four[5] = {
{
.id = LZMA_FILTER_X86,
@@ -52,6 +55,7 @@ static lzma_filter filters_four[5] = {
.id = LZMA_VLI_UNKNOWN,
}
};
+#endif
static lzma_filter filters_five[6] = {