Skip to content

Commit 19cb04b

Browse files
committed
test: skip miri-incompatible zstd FFI test
Skip test_read_compressed_ipc_block under Miri since it calls foreign zstd functions that Miri cannot execute.
1 parent 33c2f11 commit 19cb04b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

native/core/src/execution/operators/shuffle_scan.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ mod tests {
354354
use crate::execution::shuffle::codec::read_ipc_compressed;
355355

356356
#[test]
357+
#[cfg_attr(miri, ignore)] // Miri cannot call FFI functions (zstd)
357358
fn test_read_compressed_ipc_block() {
358359
let schema = Arc::new(Schema::new(vec![
359360
Field::new("id", DataType::Int32, false),

0 commit comments

Comments
 (0)