-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Miri can catch panics now #132
Conversation
// FIXME: https://github.com/rust-lang/miri/issues/653 | ||
let mut rng = { | ||
let seed = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]; | ||
SmallRng::from_seed(seed) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This issue has been closed, meaning getrandom
now works on Miri. This is still not host randomness by default; see the Miri README. But wouldn't it be better to keep this test deterministic? That's why I didn't change the code.
CI failures look unrelated:
|
blocked on cross-rs/cross#357 |
@bors r+ |
📌 Commit 4ccc1a2 has been approved by |
Miri can catch panics now Also update some other Miri-related comments.
☀️ Test successful - checks-travis |
Also update some other Miri-related comments.