-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
rustc: Add a debug_assertions #[cfg] directive #22980
Conversation
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
Note that this does not currently modify |
$(RUSTC) debug.rs -O | ||
$(call RUN,debug) | ||
$(RUSTC) debug.rs | ||
$(call RUN,debug) && exit 1 || exit 0 |
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.
Does ! $(call RUN,debug)
work reliably cross-platform?
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.
Ah turns out there's already a FAIL
macro, I'll use that.
1f412f4
to
c6be9fc
Compare
Addressed @huonw's comments |
☔ The latest upstream changes (presumably #22971) made this pull request unmergeable. Please resolve the merge conflicts. |
230e64e
to
1358c2c
Compare
I have also hooked up the now-landed overflow checking to this as well. If I haven't finished running the full suite of tests yet but I will update them as they come in. r? @pnkfelix |
assert!(!hit1); | ||
assert!(!hit2); | ||
let mut hit = false; | ||
debug_assert!({ hit = true; false }); |
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.
hmm, how will you ever reach this line? If debug-assertion are on, won't the earlier debug_assert_eq
fail? (And even if it were changed to succeed, wouldn't the subsequent non-debug asserts then fail?)
If your intent is to test the correct behavior of side-effects (or lack thereof) that occur within debug_assert
and debug_assert_eq
, I think you need to make separate tests.
@alexcrichton can you add a configure switch or something for turning on (I would not mind if |
Overall the PR looks fine; r=me if you:
|
1358c2c
to
3b59058
Compare
I'm going to punt on the |
@bors: r=pnkfelix 3b59058 |
3b59058
to
eca6dac
Compare
⌛ Testing commit eca6dac with merge 07e853c... |
⌛ Testing commit eca6dac with merge 34693d5... |
💔 Test failed - auto-linux-64-x-android-t |
@bors: retry On Tue, Mar 3, 2015 at 7:19 PM, bors notifications@github.com wrote:
|
⚡ Previous build results are reusable. Rebuilding only auto-linux-32-nopt-t, auto-linux-32-opt, auto-linux-64-nopt-t, auto-linux-64-opt, auto-linux-64-x-android-t, auto-mac-32-opt, auto-mac-64-nopt-t, auto-mac-64-opt, auto-win-32-nopt-t, auto-win-32-opt, auto-win-64-nopt-t, auto-win-64-opt... |
⚡ Previous build results are reusable. Rebuilding only auto-linux-32-nopt-t, auto-linux-32-opt, auto-linux-64-nopt-t, auto-linux-64-opt, auto-linux-64-x-android-t, auto-mac-32-opt, auto-mac-64-nopt-t, auto-mac-64-opt, auto-win-32-nopt-t, auto-win-32-opt, auto-win-64-nopt-t, auto-win-64-opt... |
💔 Test failed - auto-win-32-nopt-t |
@bors: retry |
…kfelix This commit is an implementation of [RFC 563][rfc] which adds a new `cfg(debug_assertions)` directive which is specially recognized and calculated by the compiler. The flag is turned off at any optimization level greater than 1 and may also be explicitly controlled through the `-C debug-assertions` flag. [rfc]: rust-lang/rfcs#563 The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of the `ndebug` variable and `ndebug` no longer holds any meaning to the standard library. Code which was previously relying on `not(ndebug)` to gate expensive code should be updated to rely on `debug_assertions` instead. Closes rust-lang#22492 [breaking-change]
⌛ Testing commit eca6dac with merge eb0a2a6... |
💔 Test failed - auto-mac-32-opt |
eca6dac
to
5571d40
Compare
@bors: r=pnkfelix 5571d40 |
This commit is an implementation of [RFC 563][rfc] which adds a new `cfg(debug_assertions)` directive which is specially recognized and calculated by the compiler. The flag is turned off at any optimization level greater than 1 and may also be explicitly controlled through the `-C debug-assertions` flag. [rfc]: rust-lang/rfcs#563 The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of the `ndebug` variable and `ndebug` no longer holds any meaning to the standard library. Code which was previously relying on `not(ndebug)` to gate expensive code should be updated to rely on `debug_assertions` instead. Closes rust-lang#22492 [breaking-change]
5571d40
to
d5d8345
Compare
…kfelix This commit is an implementation of [RFC 563][rfc] which adds a new `cfg(debug_assertions)` directive which is specially recognized and calculated by the compiler. The flag is turned off at any optimization level greater than 1 and may also be explicitly controlled through the `-C debug-assertions` flag. [rfc]: rust-lang/rfcs#563 The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of the `ndebug` variable and `ndebug` no longer holds any meaning to the standard library. Code which was previously relying on `not(ndebug)` to gate expensive code should be updated to rely on `debug_assertions` instead. Closes rust-lang#22492 [breaking-change]
The name of this directive changed in rust-lang/rust#22980.
The name of this directive changed in rust-lang/rust#22980. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6245) <!-- Reviewable:end -->
As of rust-lang#22980 only `cfg(debug_assertions)` is used in the standard library and rustc code.
As of rust-lang#22980 only `cfg(debug_assertions)` is used in the standard library and rustc code.
…ubeck:ndebug); r=SimonSapin The name of this directive changed in rust-lang/rust#22980. Source-Repo: https://github.com/servo/servo Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f
…ubeck:ndebug); r=SimonSapin The name of this directive changed in rust-lang/rust#22980. Source-Repo: https://github.com/servo/servo Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
…ubeck:ndebug); r=SimonSapin The name of this directive changed in rust-lang/rust#22980. Source-Repo: https://github.com/servo/servo Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
…ubeck:ndebug); r=SimonSapin The name of this directive changed in rust-lang/rust#22980. Source-Repo: https://github.com/servo/servo Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
This commit is an implementation of RFC 563 which adds a new
cfg(debug_assertions)
directive which is specially recognized and calculatedby the compiler. The flag is turned off at any optimization level greater than 1
and may also be explicitly controlled through the
-C debug-assertions
flag.
The
debug_assert!
anddebug_assert_eq!
macros now respect this instead ofthe
ndebug
variable andndebug
no longer holds any meaning to the standardlibrary.
Code which was previously relying on
not(ndebug)
to gate expensive code shouldbe updated to rely on
debug_assertions
instead.Closes #22492
[breaking-change]