-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Trace macros flag #24430
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
Trace macros flag #24430
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @pnkfelix (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see CONTRIBUTING.md for more information. |
@@ -482,6 +482,7 @@ pub fn phase_2_configure_and_expand(sess: &Session, | |||
crate_name: crate_name.to_string(), | |||
features: Some(&features), | |||
recursion_limit: sess.recursion_limit.get(), | |||
trace_mac: sess.opt.debugging_opts.trace_macros, |
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 should be sess.opts
- I don't understand how Travis can mark this as OK
It generates a warning that --outdir argument is ignored, which is captured and spoils the output Also ensure that test output is captured in a different file than the expected output file
@bors r+ |
📌 Commit 5e1505f has been approved by |
⌛ Testing commit 5e1505f with merge b96e46d... |
💔 Test failed - auto-linux-64-nopt-t |
@pnkfelix Is there something wrong with the way I defined the test? |
@laumann did you run the |
I ran |
@pnkfelix Seems to work now... I ran |
@bors r=pnkfelix |
📌 Commit 3a20363 has been approved by |
⌛ Testing commit 3a20363 with merge d81e89e... |
💔 Test failed - auto-linux-64-nopt-t |
|
This seems to fix the test
This is the second attempt at turning the trace_macros macro into a compiler flag. See rust-lang#22619
This is the second attempt at turning the trace_macros macro into a compiler flag. See rust-lang#22619
⌛ Testing commit c0139ca with merge a369eec... |
💔 Test failed - auto-mac-64-nopt-t |
@bors: retry On Fri, Apr 17, 2015 at 7:59 AM, bors notifications@github.com wrote:
|
This is the second attempt at turning the trace_macros macro into a compiler flag.
See #22619