Skip to content

Commit

Permalink
Ignore more failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jul 21, 2021
1 parent 47e1b45 commit adc189d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arrow/src/datatypes/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ mod tests {
}

#[test]
#[cfg_attr(miri, ignore)] // https://github.com/apache/arrow-rs/issues/580
fn test_type() -> Result<()> {
round_trip_type(DataType::Int64)?;
round_trip_type(DataType::UInt64)?;
Expand All @@ -326,13 +327,15 @@ mod tests {
}

#[test]
#[cfg_attr(miri, ignore)] // https://github.com/apache/arrow-rs/issues/580
fn test_field() -> Result<()> {
let dtype = DataType::Struct(vec![Field::new("a", DataType::Utf8, true)]);
round_trip_field(Field::new("test", dtype, true))?;
Ok(())
}

#[test]
#[cfg_attr(miri, ignore)] // https://github.com/apache/arrow-rs/issues/580
fn test_schema() -> Result<()> {
let schema = Schema::new(vec![
Field::new("name", DataType::Utf8, false),
Expand Down
2 changes: 2 additions & 0 deletions arrow/src/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -911,11 +911,13 @@ mod tests {
}

#[test]
#[cfg_attr(miri, ignore)] // https://github.com/apache/arrow-rs/issues/580
fn test_list() -> Result<()> {
test_generic_list::<i32>()
}

#[test]
#[cfg_attr(miri, ignore)] // https://github.com/apache/arrow-rs/issues/580
fn test_large_list() -> Result<()> {
test_generic_list::<i64>()
}
Expand Down

0 comments on commit adc189d

Please sign in to comment.