-
Notifications
You must be signed in to change notification settings - Fork 147
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 now supports catching panics #186
Conversation
This is missing https://github.com/servo/rust-smallvec/blob/master/lib.rs#L1987 too, but otherwise is awesome to see. |
@thomcc that test is quite odd as it is never actually enabled even without Miri! The However, when Miri runs |
Okay, Miri can now ignore leaks and I added that flag here. Should be good to go. |
@bors-servo r+ Thanks! |
📌 Commit ddfa856 has been approved by |
Miri now supports catching panics Also fix a mistake in the .gitignore (at least on my system, this didn't actually ignore the lockfile)
☀️ Test successful - checks-travis |
Version 1.1.0 Changes in this release: * Added new method `SmallVec::into_boxed_slice` (#190). * Added new methods `IntoIter::as_slice` and `as_mut_slice` (#182). * `IntoIter` now implements `Clone` (#192). * Improved documentation and testing (#186, #189). * Minor code cleanups (#176). Also added a simple example to the README.
Also fix a mistake in the .gitignore (at least on my system, this didn't actually ignore the lockfile)