Skip to content

Commit 1162053

Browse files
committed
disable very slow test for miri
1 parent a0b333e commit 1162053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-libz-rs-sys/src/inflate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,6 @@ fn try_inflate(input: &[u8], err: c_int) -> c_int {
638638
/* allocate work areas */
639639
let size = len << 3;
640640
let mut out = vec![0; size];
641-
dbg!(out.as_slice().as_ptr_range());
642641
// let mut win = vec![0; 32768];
643642

644643
// /* first with inflate */
@@ -1655,6 +1654,7 @@ fn prng_bytes(seed: u64, bytes: &mut [u8], step: usize) {
16551654
}
16561655

16571656
#[test]
1657+
#[cfg_attr(miri, ignore = "slow")]
16581658
fn test_inflate_flush_block() {
16591659
let window_bits = -15; // Raw
16601660
const CHUNK: usize = 16384;

0 commit comments

Comments
 (0)