Skip to content

Commit 91d3e4a

Browse files
bors[bot]RalfJung
andcommitted
Merge #55
55: install Miri via rustup r=Amanieu a=RalfJung Co-authored-by: Ralf Jung <[email protected]>
2 parents edf79d0 + 49a9d6c commit 91d3e4a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ci/miri.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55
export CARGO_NET_RETRY=5
66
export CARGO_NET_TIMEOUT=10
77

8-
if cargo install --force --git https://github.com/rust-lang/miri miri ; then
8+
if rustup component add miri ; then
99
cargo miri setup
10-
cargo miri test
10+
cargo miri test -- -- -Zunstable-options --exclude-should-panic
1111
fi

src/map.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3219,7 +3219,6 @@ mod test_map {
32193219

32203220
#[test]
32213221
#[should_panic]
3222-
#[cfg(not(miri))] // FIXME: https://github.com/rust-lang/miri/issues/636
32233222
fn test_index_nonexistent() {
32243223
let mut map = HashMap::new();
32253224

0 commit comments

Comments
 (0)