Skip to content

Commit

Permalink
Conditionally ignore more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave committed Jun 4, 2020
1 parent c5b8360 commit 348909e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ fn tree_subdir() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn tree_small_keys_iterator() {
let config = Config::new().temporary(true).flush_every_ms(None);
let t = config.open().unwrap();
Expand Down Expand Up @@ -586,6 +587,7 @@ fn tree_small_keys_iterator() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn tree_big_keys_iterator() {
fn kv(i: usize) -> Vec<u8> {
let k = [(i >> 16) as u8, (i >> 8) as u8, i as u8];
Expand Down Expand Up @@ -818,6 +820,7 @@ fn create_tree() {
}

#[test]
#[cfg_attr(miri, ignore)]
fn tree_import_export() -> Result<()> {
common::setup_logger();

Expand Down

0 comments on commit 348909e

Please sign in to comment.