-
Notifications
You must be signed in to change notification settings - Fork 13k
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
[compiletest
-related cleanups 1/7] Cleanup is_rustdoc
logic and remove a useless path join in rustdoc-json runtest logic
#136441
base: master
Are you sure you want to change the base?
Conversation
This comment was marked as off-topic.
This comment was marked as off-topic.
compiletest
-related cleanups 1/9] cleanup is_rustdoc
logiccompiletest
-related cleanups 1/9] Cleanup is_rustdoc
logic
compiletest
-related cleanups 1/9] Cleanup is_rustdoc
logiccompiletest
-related cleanups 1/8] Cleanup is_rustdoc
logic
compiletest
-related cleanups 1/8] Cleanup is_rustdoc
logiccompiletest
-related cleanups 1/7] Cleanup is_rustdoc
logic and remove a useless path join in rustdoc-json runtest logic
.arg(root.join(&out_dir)) | ||
.arg(&out_dir) |
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 currently is useless because out_dir
is an absolute path, so root.join(&out_dir)
will just become out_dir
. This would be actually wrong if out_dir
was a relative path, because build dir is not necessarily under source root (such as in CI).
@rustbot ready |
r? compiler-errors @bors r+ rollup |
Reference for overall changes: #136437
Part 1 of 7 of the
compiletest
-related cleanups PR series.Summary
r? bootstrap (or compiler)