Skip to content
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

Stabilize flags for doctest cross compilation #137096

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

ehuss
Copy link
Contributor

@ehuss ehuss commented Feb 15, 2025

This makes the following changes in preparation for supporting doctest cross-compiling in cargo:

  • Renames --runtool and --runtool-arg to --test-runtool and --test-runtool-arg to maintain consistency with other --test-* arguments.
  • Stabilizes the --test-runtool and --test-runtool-arg. These are needed in order to support cargo's target.runner option which specifies a runner to execute a cross-compiled doctest (for example, qemu).
  • Stabilizes the --enable-per-target-ignores flag by removing it and making it unconditionally enabled. This makes it possible to disable a doctest on a per-target basis, which I think will be helpful for rolling out this feature.

These changes were suggested in https://rust-lang.zulipchat.com/#narrow/channel/266220-t-rustdoc/topic/stabilizing.20doctest.20xcompile/near/409281127

The intent is to stabilize the doctest-xcompile feature in cargo. This will help ensure that for projects that do cross-compile testing that their doctests are also covered. Currently there is a somewhat surprising behavior that they are ignored.

Closes #64245

try-job: x86_64-msvc-1

@rustbot
Copy link
Collaborator

rustbot commented Feb 15, 2025

r? @fmease

rustbot has assigned @fmease.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. labels Feb 15, 2025
@fmease fmease added the needs-fcp This change is insta-stable, so needs a completed FCP to proceed. label Feb 15, 2025
@rust-log-analyzer

This comment has been minimized.

@ehuss ehuss force-pushed the stabilize-doctest-xcompile branch from ab9d4c8 to a676b04 Compare February 15, 2025 20:58
@rustbot rustbot added the A-run-make Area: port run-make Makefiles to rmake.rs label Feb 15, 2025
@rustbot
Copy link
Collaborator

rustbot commented Feb 15, 2025

This PR modifies tests/run-make/. If this PR is trying to port a Makefile
run-make test to use rmake.rs, please update the
run-make port tracking issue
so we can track our progress. You can either modify the tracking issue
directly, or you can comment on the tracking issue and link this PR.

cc @jieyouxu

The Miri subtree was changed

cc @rust-lang/miri

@rust-log-analyzer

This comment has been minimized.

@ehuss ehuss force-pushed the stabilize-doctest-xcompile branch from a676b04 to 8aaa90b Compare February 15, 2025 22:01
@bors
Copy link
Collaborator

bors commented Mar 22, 2025

☔ The latest upstream changes (presumably #138830) made this pull request unmergeable. Please resolve the merge conflicts.

@ehuss ehuss force-pushed the stabilize-doctest-xcompile branch 2 times, most recently from a0799de to ddc6525 Compare March 22, 2025 23:04
@ehuss
Copy link
Contributor Author

ehuss commented Mar 23, 2025

@fmease @GuillaumeGomez Just checking if this can be put on the team's radar?

@GuillaumeGomez
Copy link
Member

On my review list now. :)

@GuillaumeGomez
Copy link
Member

I think they've been around for enough time. Let's start an FCP then.

@rfcbot fcp merge

@rfcbot
Copy link
Collaborator

rfcbot commented Mar 23, 2025

Team member @GuillaumeGomez has proposed to merge this. The next step is review by the rest of the tagged team members:

Concerns:

Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up!

See this document for info about what commands tagged team members can give me.

@rfcbot rfcbot added proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. labels Mar 23, 2025
@ehuss
Copy link
Contributor Author

ehuss commented Mar 28, 2025

In playing around with this, I noticed a slight annoyance when using --edition=2024 and mergeable tests. It always prints:

WARNING: No rustdoc doctest environment variable provided so doctests will be run in the same process

I'm wondering if it would make sense to somehow silence that warning when using --test-runtool?

I'm also wondering if it is the right choice to run in the same process. I could see arguments either way. Let me know if you have any opinion on that.

@rust-log-analyzer

This comment has been minimized.

ehuss added 4 commits March 27, 2025 19:04
This renames `--runtool` and `--runtool-arg` to `--test-runtool` and
`--test-runtool-arg` to maintain consistency with other `--test-*`
arguments.
This removes the `--enable-per-target-ignores` and enables it
unconditionally.
@ehuss ehuss force-pushed the stabilize-doctest-xcompile branch from 803831d to f535922 Compare March 28, 2025 02:07
bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 2, 2025
…<try>

Stabilize flags for doctest cross compilation

This makes the following changes in preparation for supporting doctest cross-compiling in cargo:

- Renames `--runtool` and `--runtool-arg` to `--test-runtool` and `--test-runtool-arg` to maintain consistency with other `--test-*` arguments.
- Stabilizes the `--test-runtool` and `--test-runtool-arg`. These are needed in order to support cargo's `target.runner` option which specifies a runner to execute a cross-compiled doctest (for example, qemu).
- Stabilizes the `--enable-per-target-ignores` flag by removing it and making it unconditionally enabled. This makes it possible to disable a doctest on a per-target basis, which I think will be helpful for rolling out this feature.

These changes were suggested in https://rust-lang.zulipchat.com/#narrow/channel/266220-t-rustdoc/topic/stabilizing.20doctest.20xcompile/near/409281127

The intent is to stabilize the doctest-xcompile feature in cargo. This will help ensure that for projects that do cross-compile testing that their doctests are also covered. Currently there is a somewhat surprising behavior that they are ignored.

Closes rust-lang#64245
@bors

This comment was marked as outdated.

@fmease

This comment has been minimized.

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 2, 2025
…<try>

Stabilize flags for doctest cross compilation

This makes the following changes in preparation for supporting doctest cross-compiling in cargo:

- Renames `--runtool` and `--runtool-arg` to `--test-runtool` and `--test-runtool-arg` to maintain consistency with other `--test-*` arguments.
- Stabilizes the `--test-runtool` and `--test-runtool-arg`. These are needed in order to support cargo's `target.runner` option which specifies a runner to execute a cross-compiled doctest (for example, qemu).
- Stabilizes the `--enable-per-target-ignores` flag by removing it and making it unconditionally enabled. This makes it possible to disable a doctest on a per-target basis, which I think will be helpful for rolling out this feature.

These changes were suggested in https://rust-lang.zulipchat.com/#narrow/channel/266220-t-rustdoc/topic/stabilizing.20doctest.20xcompile/near/409281127

The intent is to stabilize the doctest-xcompile feature in cargo. This will help ensure that for projects that do cross-compile testing that their doctests are also covered. Currently there is a somewhat surprising behavior that they are ignored.

Closes rust-lang#64245

try-job: x86_64-msvc-1
@bors

This comment has been minimized.

@fmease
Copy link
Member

fmease commented Apr 2, 2025

@rfcbot concern forwarding-multi-args-mechanism

I'd like to block this FCP on a concern I have. Together with the unstable --doctest-compilation-args flag, rustdoc now has (at least) three flags used for forwarding program arguments each of which uses a different mechanism:

  1. --test-args (stable): Splits its argument by Unicode whitespace
  2. --test-runtool-arg (still unstable): Forwards its argument as is
  3. --doctest-compilation-args (unstable): Splits its argument "shell-style"

(All of them can be passed multiple times)


I'd like to see this rectified.

@fmease fmease added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. S-waiting-on-team Status: Awaiting decision from the relevant subteam (see the T-<team> label). and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Apr 2, 2025
@bors

This comment has been minimized.

@fmease fmease removed the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Apr 3, 2025
@ehuss
Copy link
Contributor Author

ehuss commented Apr 3, 2025

@fmease Can you say more about what you would like to see rectified?

--test-runtool-arg has exactly the behavior we want. We need to be able to pass arguments in without needing to do any processing. I would argue that it is unfortunate that --test-args splits on spaces, since it prevents passing args with spaces, but unfortunately that is stable. I don't know why --doctest-compilation-args is using shell quoting, but that won't work for us (and is generally awkward to use, since you may need to double-encode when using a shell).

@fmease
Copy link
Member

fmease commented Apr 3, 2025

Right, it's not something I expect you personally to need to answer, it's more directed toward the team, something I wanted to bring attention to because I only realized this yesterday while reviewing and I don't know if the others were aware of that already of not.

To make this more actionable, I think I simply want confirmation from the other T-rustdoc members that we should do something here, namely either

  1. What I initially leaned towards but like less now come to think about it:
    1. Use shell-like lexing for --test-args instead of Unicode whitespace splitting (breaking change)
    2. Change --test-runtool-arg to --test-runtool-args and use shell-like lexing for it, too
  2. What I now think is the 'best' option:
    1. Keep --test-runtool-arg as is — unblocking this FCP
    2. (Separately) deprecate the stable --test-args in favor of a new --test-arg that doesn't perform any processing
    3. (Separately) replace the unstable --doctest-compilation-args with a new --doctest-build-arg that doesn't perform any processing either

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-run-make Area: port run-make Makefiles to rmake.rs disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. needs-fcp This change is insta-stable, so needs a completed FCP to proceed. proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. S-waiting-on-team Status: Awaiting decision from the relevant subteam (see the T-<team> label). T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Tracking Issue for Cross Compiling Doctests
8 participants