-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These are probably spurious; see crossbeam-rs/crossbeam#464 and spacejam/sled#937 (comment) And besides, we're now running both the leak sanitizer and the address sanitizer.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |||
rust: nightly | ||||
components: | ||||
- miri | ||||
- bash: yes | cargo miri test | ||||
- bash: yes | env RUSTFLAGS="-Zmiri-ignore-leaks" cargo miri test | ||||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jonhoo
Author
Owner
|
- bash: yes | cargo miri -Zmiri-ignore-leaks test |
Thanks, I'll update with cargo miri setup
and reference rust-lang/miri#940 in addition to crossbeam-rs/crossbeam#464 :)
This comment has been minimized.
This comment has been minimized.
Sorry, something went wrong.
The recommended way to do this is
cargo miri test -- -Zmiri-ignore-leaks
. I am quite surprised usingRUSTFLAGS
even works.^^Also, if you run
cargo miri setup
first, you shouldn't needyes |
(see the README).