Jefffrey commented on code in PR #9650:
URL: https://github.com/apache/arrow-rs/pull/9650#discussion_r3345313559
##########
arrow-buffer/src/buffer/boolean.rs:
##########
@@ -1073,7 +1073,12 @@ mod tests {
let input_buffer_left = BooleanBuffer::from(&input_bools_left[..]);
let input_buffer_right = BooleanBuffer::from(&input_bools_right[..]);
- for left_offset in 0..200 {
+ #[cfg(miri)]
Review Comment:
```suggestion
#[cfg(miri)] // Takes too long otherwise
```
##########
arrow-ord/src/sort.rs:
##########
@@ -5100,6 +5101,7 @@ mod tests {
// Fuzz testing: generate random UTF-8 strings and verify sort correctness
#[test]
+ #[cfg_attr(miri, ignore)]
Review Comment:
```suggestion
#[cfg_attr(miri, ignore)] // Takes too long
```
##########
arrow-ord/src/sort.rs:
##########
@@ -4892,6 +4892,7 @@ mod tests {
}
#[test]
+ #[cfg_attr(miri, ignore)]
Review Comment:
```suggestion
#[cfg_attr(miri, ignore)] // Takes too long
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]