-
Notifications
You must be signed in to change notification settings - Fork 294
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
Run tests under panic=abort #749
Conversation
This reverts commit b2ad89e.
@@ -291,6 +291,7 @@ fn split_to_uninitialized() { | |||
} | |||
|
|||
#[test] | |||
#[cfg_attr(not(panic = "unwind"), ignore)] |
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.
#[cfg_attr(not(panic = "unwind"), ignore)] | |
#[cfg_attr(panic = "abort", ignore)] |
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.
There could be additional panic strategies in the future.
@@ -1618,6 +1619,7 @@ fn owned_to_vec() { | |||
} | |||
|
|||
#[test] | |||
#[cfg_attr(not(panic = "unwind"), ignore)] |
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.
#[cfg_attr(not(panic = "unwind"), ignore)] | |
#[cfg_attr(panic = "abort", ignore)] |
No description provided.