Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Dec 28, 2024
1 parent dc2c58f commit 4311978
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions ci/miri_tb_bounded.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,4 @@ cargo miri setup
# Zmiri-ignore-leaks needed because of https://github.com/crossbeam-rs/crossbeam/issues/579
export MIRIFLAGS="-Zmiri-strict-provenance -Zmiri-disable-isolation -Zmiri-symbolic-alignment-check -Zmiri-tree-borrows -Zmiri-ignore-leaks"
export RUSTFLAGS="--cfg test_$CONFIG_FLAGS"

cargo miri test --tests --target $TARGET --lib --no-default-features --features bounded,std 2>&1 | ts -i '%.s '

1 change: 0 additions & 1 deletion ci/miri_tb_unbounded.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,5 @@ cargo miri setup
# -Zmiri-strict-provenance (crossbeam-epoch is not compatible with this flag)
export MIRIFLAGS="-Zmiri-disable-isolation -Zmiri-symbolic-alignment-check -Zmiri-tree-borrows -Zmiri-ignore-leaks"
export RUSTFLAGS="--cfg test_$CONFIG_FLAGS"

cargo miri test --tests --target $TARGET --lib --no-default-features --features unbounded,std 2>&1 | ts -i '%.s '

2 changes: 1 addition & 1 deletion src/swmr/tests/dynamic/constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::dynamic::BoundedTable;
#[cfg(feature = "unbounded")]
use crate::dynamic::UnboundedTable;

use super::MB;
use super::*;

fn zero_reserved<M>(wal: &mut OrderWal<M>)
where
Expand Down
2 changes: 1 addition & 1 deletion src/swmr/tests/generic/constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::generic::BoundedTable;
#[cfg(feature = "unbounded")]
use crate::generic::UnboundedTable;

use super::{Person, MB};
use super::*;

fn zero_reserved<M>(wal: &mut OrderWal<M>)
where
Expand Down

0 comments on commit 4311978

Please sign in to comment.