diff options
author | Jia Tan <jiat0218@gmail.com> | 2022-10-05 16:41:38 +0800 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-10-05 16:10:21 +0300 |
commit | 6ca5c354bd4620aa7f81da68870eef1b1f26288f (patch) | |
tree | 4fce708cc0bc288902686ef9014d4ea1795ea499 /tests/test_memlimit.c | |
parent | tuklib_integer: Add 64-bit endianness-converting reads and writes. (diff) | |
download | xz-6ca5c354bd4620aa7f81da68870eef1b1f26288f.tar.xz |
Tests: Fix compilation error when threading support has been disabled.
Now tests that require threading are skipped when threading
support has been disabled.
Thanks to Sebastian Andrzej Siewior.
Diffstat (limited to 'tests/test_memlimit.c')
-rw-r--r-- | tests/test_memlimit.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_memlimit.c b/tests/test_memlimit.c index 24b7f6e1..6e2e62e1 100644 --- a/tests/test_memlimit.c +++ b/tests/test_memlimit.c @@ -53,6 +53,9 @@ test_memlimit_stream_decoder(void) static void test_memlimit_stream_decoder_mt(void) { +#ifndef MYTHREAD_ENABLED + assert_skip("Threading support disabed"); +#else lzma_stream strm = LZMA_STREAM_INIT; lzma_mt mt = { .flags = 0, @@ -79,6 +82,7 @@ test_memlimit_stream_decoder_mt(void) assert_lzma_ret(lzma_code(&strm, LZMA_FINISH), LZMA_STREAM_END); lzma_end(&strm); +#endif } |