aboutsummaryrefslogtreecommitdiff
path: root/tests/test_memlimit.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_memlimit.c')
-rw-r--r--tests/test_memlimit.c4
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
}