We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd25497 commit 6fb3dc4Copy full SHA for 6fb3dc4
1 file changed
tests/test_zstd.py
@@ -12,6 +12,7 @@
12
check_err_decode_object_buffer,
13
check_err_encode_object_buffer,
14
check_repr,
15
+ is_wasm,
16
)
17
18
codecs = [
@@ -88,6 +89,9 @@ def test_native_functions():
88
89
assert Zstd.max_level() == 22
90
91
92
+@pytest.mark.xfail(
93
+ is_wasm, reason="Streaming frames with unknown content size overflow on 32-bit WASM"
94
+)
95
def test_streaming_decompression():
96
# Test input frames with unknown frame content size
97
codec = Zstd()
@@ -161,6 +165,9 @@ def zstd_cli_available() -> bool:
161
165
return False
162
166
163
167
168
169
+ is_wasm, reason="Multi-frame decompression with unknown-size frames fails on 32-bit WASM"
170
164
171
def test_multi_frame():
172
173
0 commit comments