We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents edf79d0 + 49a9d6c commit 91d3e4aCopy full SHA for 91d3e4a
ci/miri.sh
@@ -5,7 +5,7 @@ set -ex
5
export CARGO_NET_RETRY=5
6
export CARGO_NET_TIMEOUT=10
7
8
-if cargo install --force --git https://github.com/rust-lang/miri miri ; then
+if rustup component add miri ; then
9
cargo miri setup
10
- cargo miri test
+ cargo miri test -- -- -Zunstable-options --exclude-should-panic
11
fi
src/map.rs
@@ -3219,7 +3219,6 @@ mod test_map {
3219
3220
#[test]
3221
#[should_panic]
3222
- #[cfg(not(miri))] // FIXME: https://github.com/rust-lang/miri/issues/636
3223
fn test_index_nonexistent() {
3224
let mut map = HashMap::new();
3225
0 commit comments