This is an automated email from the ASF dual-hosted git repository.
Jefffrey pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new b825e98ff6 chore: Skip Miri test that takes hours to run (#11158)
b825e98ff6 is described below
commit b825e98ff68a20e875ecbf1771e5fab0878271d9
Author: Ed Seidl <[email protected]>
AuthorDate: Mon Sep 21 16:48:22 2026 -0700
chore: Skip Miri test that takes hours to run (#11158)
# Which issue does this PR close?
N/A
# Rationale for this change
A recently added unit test takes a long time to run through Miri. See
for example
https://github.com/apache/arrow-rs/actions/runs/35576505044/job/106259438819?pr=11149.
Even with #11152 in the queue, it's worth skipping tests that will
timeout eventually.
# What changes are included in this PR?
Configure Miri to skip the test.
# Are these changes tested?
N/A
# Are there any user-facing changes?
No
---
parquet/src/arrow/arrow_reader/selection/mod.rs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/parquet/src/arrow/arrow_reader/selection/mod.rs
b/parquet/src/arrow/arrow_reader/selection/mod.rs
index 4a83f6157a..74e6727255 100644
--- a/parquet/src/arrow/arrow_reader/selection/mod.rs
+++ b/parquet/src/arrow/arrow_reader/selection/mod.rs
@@ -951,6 +951,7 @@ mod tests {
}
#[test]
+ #[cfg_attr(miri, ignore)] // Takes too long
fn auto_construction_edge_row_counts() {
for rows in [0, 1, 7, 8, 31, 32, 33, MAX_RANDOM_ROWS] {
let masks = [
@@ -976,6 +977,7 @@ mod tests {
}
#[test]
+ #[cfg_attr(miri, ignore)] // Takes too long
fn auto_construction_randomized_equivalence() {
let mut rng = StdRng::seed_from_u64(0x1077_6000_5eed);
let mut case_idx = 0usize;