We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bf396 commit 63f061cCopy full SHA for 63f061c
test-libz-rs-sys/src/deflate.rs
@@ -1803,7 +1803,6 @@ mod fuzz_based_tests {
1803
}
1804
1805
#[test]
1806
- #[cfg_attr(target_family = "wasm", ignore = "zlib-ng compresses differently on wasm")]
1807
fn hash_calc_difference() {
1808
// exposed an issue in the crc32 acle hash calc where the incorrect instruction was used.
1809
// a different hash function changes which match is found first in the hash map, and
@@ -1847,7 +1846,7 @@ mod fuzz_based_tests {
1847
1846
mem_level: 2,
1848
strategy: Strategy::Default,
1849
},
1850
- if cfg!(target_arch = "s390x") {
+ if cfg!(any(target_arch = "s390x", target_family = "wasm")) {
1851
output_s390x
1852
} else {
1853
output_other
0 commit comments