-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Migrate run-make/rustdoc-with-out-dir-option
to new rmake.rs
#125178
Migrate run-make/rustdoc-with-out-dir-option
to new rmake.rs
#125178
Conversation
Some changes occurred in run-make tests. cc @jieyouxu |
fn main() { | ||
let out_dir = tmp_dir().join("rustdoc"); | ||
rustdoc().input("src/lib.rs").crate_name("foobar").crate_type("lib").output(&out_dir).run(); | ||
htmldocck().arg(out_dir).arg("src/lib.rs").status().unwrap().success(); |
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 think this needs to be an assert?
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 definitely does!
1095e61
to
d594c9c
Compare
I checked just in case and found two other cases where I forgot to add the |
The run-make-support library was changed cc @jieyouxu |
And that allowed me to see that the |
Thanks for fixing those! r=me after CI is green |
@bors r=jieyouxu rollup |
☀️ Test successful - checks-actions |
Finished benchmarking commit (a5c37ee): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)Results (primary -0.4%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (primary -1.7%, secondary 1.9%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 670.875s -> 669.422s (-0.22%) |
Part of #121876.
r? @jieyouxu