-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Add warning if a resolution failed #49542
Add warning if a resolution failed #49542
Conversation
Can you add a ui test showing the new warnings? |
Good idea! |
e507a56
to
dc4a9ea
Compare
src/bootstrap/test.rs
Outdated
|
||
fn make_run(run: RunConfig) { | ||
let compiler = run.builder.compiler(run.builder.top_stage, run.host); | ||
run.builder.ensure(tool::Rustdoc { |
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.
No need for this as builder.rustdoc
below will take care of it for you.
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.
Where?
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.
cmd.arg("--rustdoc-path").arg(builder.rustdoc(compiler.host));
on what might be 898 -- that call to rustdoc
will auto-ensure it for you, so you shouldn't need this.
dc4a9ea
to
fb1aae2
Compare
Updated (I also added some useful options to rustdoc). |
@@ -0,0 +1,6 @@ | |||
warning: [src] cannot be resolved, ignoring it... |
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.
What's with this src thing?
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.
That's actually a good question... Looking where it's coming from.
@@ -514,6 +514,44 @@ impl Step for RustdocJS { | |||
} | |||
} | |||
|
|||
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] | |||
pub struct RustdocUi { |
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 is a lot of code for very few tests. I was hoping we could somehow express this in the regular ui tests by inserting some flags via comments in the test?
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.
As would i, but (as far as i know) there's no facility in compiletest to swap out which binary is called for a specific test - only which arguments are passed. In addition, we would have to tell bootstrap to have rustdoc ready for the UI tests, even if someone is trying to run a specific non-rustdoc test.
Plus, we wanted to introduce UI tests for rustdoc at some point anyway. >_>
Having them in a separate test directory will help us when we add more over time.
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.
We need to have a struct directly to bind the test folder path.
@@ -1160,6 +1160,10 @@ enum PathKind { | |||
Type, | |||
} | |||
|
|||
fn resolution_failure(cx: &DocContext, path_str: &str) { | |||
cx.sess().warn(&format!("[{}] cannot be resolved, ignoring it...", path_str)); |
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.
Are there spans available that we can use to report the warnings?
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.
It'll be part of another pr. I think this one is already big enough.
..config::basic_options().clone() | ||
}; | ||
|
||
let codemap = Lrc::new(codemap::CodeMap::new(sessopts.file_path_mapping())); | ||
let diagnostic_handler = errors::Handler::with_tty_emitter(ColorConfig::Auto, |
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.
What is the purpose of these changes?
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.
Allow rustdoc output to be checked through UI test suite.
fb1aae2
to
efadab3
Compare
Fixed a few comments. |
src/libstd/lib.rs
Outdated
@@ -47,7 +47,7 @@ | |||
//! development you may want to press the **[-]** button near the top of the | |||
//! page to collapse it into a more skimmable view. | |||
//! | |||
//! While you are looking at that **[-]** button also notice the **[src]** | |||
//! While you are looking at that **[-]** button also notice the `[src]` |
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.
It's probably worth changing the [-]
references to also use backticks, just so they're all using the same style.
The rustdoc changes look good to me, but i'm less certain about the changes to bootstrap and compiletest. I'd like some extra eyes to look at those bits. |
efadab3
to
1833b19
Compare
cc @oli-obk |
@@ -514,6 +514,41 @@ impl Step for RustdocJS { | |||
} | |||
} | |||
|
|||
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] | |||
pub struct RustdocUi { |
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 struct should be replaceable with a host_test!
macro invocation I believe.
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.
I tried to at first to avoid writing code by hand, but failed... I can't only rely on UI or rustdoc test suite, I need a mix of the two.
@@ -276,6 +276,8 @@ pub fn parse_config(args: Vec<String>) -> Config { | |||
), | |||
}; | |||
|
|||
let src_base = opt_path(matches, "src-base"); | |||
let run_ignored = matches.opt_present("ignored"); |
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.
Avoiding these changes seems good for consistency's sake.
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.
How would you do it?
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.
Er, this file should be possible to leave as-is: both changes were simply extracted from struct's definition AFAICT.
src/tools/compiletest/src/runtest.rs
Outdated
rustc.args(&["-Z", "incremental-verify-ich"]); | ||
rustc.args(&["-Z", "incremental-queries"]); | ||
} | ||
println!("{:?}", is_rustdoc); |
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.
Leftover debugging code?
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.
Oops indeed!
1833b19
to
46f62ba
Compare
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.
ups, forgot to submit this review...
// except according to those terms. | ||
|
||
#![deny(warnings)] | ||
|
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.
Why isn't this deny warnings failing the test?
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.
It hasn't been implemented in rustdoc (yet?). I'll remove this line.
} else { | ||
vec!["-Crpath".to_string()] | ||
}; | ||
if !is_rustdoc_ui { |
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.
Merge the if below into this one
} | ||
|
||
fn make_run(run: RunConfig) { | ||
let compiler = run.builder.compiler(run.builder.top_stage, run.host); |
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.
You need to make this depend on rustdoc. Otherwise rustdoc might not be available when running the tests. A call to ensure
should suffice
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.
Apparently it's done correctly (or at least that's what I understood from @Mark-Simulacrum's comment).
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.
Yes, this is fine as is, we depend on rustdoc below when we pass it's path.
Updated. |
Anyone? cc @oli-obk @Mark-Simulacrum @QuietMisdreavus |
r=me on bootstrap changes |
@bors: r=Mark-Simulacrum |
📌 Commit ae4c6d0 has been approved by |
🔒 Merge conflict |
…Mark-Simulacrum Add warning if a resolution failed r? @QuietMisdreavus
💔 Test failed - status-appveyor |
The appveyor tests output just end on |
☔ The latest upstream changes (presumably #49956) made this pull request unmergeable. Please resolve the merge conflicts. |
@GuillaumeGomez That looks like just a spurious 3-hour timeout. But now you need to rebase anyway... |
4b7f4cc
to
05275da
Compare
Rebased, let's go again! @bors: r+ p=11 |
📌 Commit 05275da has been approved by |
…GuillaumeGomez Add warning if a resolution failed r? @QuietMisdreavus
☀️ Test successful - status-appveyor, status-travis |
r? @QuietMisdreavus