-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Fix transitive doctests panic=abort #3021
Conversation
Ensure that when we compile doctested libraries or examples we use the same panic mode as the rest of the tests, namely ignoring panic=abort b/c libtest isn't compiled with panic=abort. Closes rust-lang#3017
@alexcrichton: no appropriate reviewer found, use r? to override |
r? @brson |
@bors r+ |
📌 Commit 23498ec has been approved by |
Fix transitive doctests panic=abort Ensure that when we compile doctested libraries or examples we use the same panic mode as the rest of the tests, namely ignoring panic=abort b/c libtest isn't compiled with panic=abort. Closes #3017
💔 Test failed - cargo-win-gnu-64 |
@bors: retry On Tue, Aug 23, 2016 at 1:57 PM, bors notifications@github.com wrote:
|
Fix transitive doctests panic=abort Ensure that when we compile doctested libraries or examples we use the same panic mode as the rest of the tests, namely ignoring panic=abort b/c libtest isn't compiled with panic=abort. Closes #3017
☀️ Test successful - cargo-cross-linux, cargo-linux-32, cargo-linux-64, cargo-mac-32, cargo-mac-64, cargo-win-gnu-32, cargo-win-gnu-64, cargo-win-msvc-32, cargo-win-msvc-64 |
Ensure that when we compile doctested libraries or examples we use the same
panic mode as the rest of the tests, namely ignoring panic=abort b/c libtest
isn't compiled with panic=abort.
Closes #3017