diff options
| author | Jubilee <workingjubilee@gmail.com> | 2025-03-04 14:50:39 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-04 14:50:39 -0800 |
| commit | e5ac9f89eb4bd5dbd7ca1a984ee337bf05a5dd04 (patch) | |
| tree | 8853d7f39bad04b4dac46cf381cda122ceb0a7a5 /tests/run-make/rustdoc-default-output | |
| parent | ee1d01939f999cdd0e33d4978e58fac783c87c6f (diff) | |
| parent | 9d6ca5f286dac25ac168aa77709f5a0cbd40d30b (diff) | |
| download | rust-e5ac9f89eb4bd5dbd7ca1a984ee337bf05a5dd04.tar.gz rust-e5ac9f89eb4bd5dbd7ca1a984ee337bf05a5dd04.zip | |
Rollup merge of #137373 - Kobzol:tool-stage0-improve, r=jieyouxu
Compile run-make-support and run-make tests with the bootstrap compiler It does not seem necessary to have to recompile run-make-support on changes to the local compiler/stdlib. This PR simplifies the implementation of a few tools, then switches rms to stage0 and also makes the handling of environment variables in run-make tests simpler. Best reviewed commit-by-commit. I can split it into multiple PRs if you want. Also tested that `COMPILETEST_FORCE_STAGE0=1 ./x test tests/run-make --stage 0` still works. Incredibly, it looks like it even passes more tests than on `master` :laughing: r? ``@jieyouxu``
Diffstat (limited to 'tests/run-make/rustdoc-default-output')
| -rw-r--r-- | tests/run-make/rustdoc-default-output/rmake.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-make/rustdoc-default-output/rmake.rs b/tests/run-make/rustdoc-default-output/rmake.rs index 06720445a35..5f9c501e528 100644 --- a/tests/run-make/rustdoc-default-output/rmake.rs +++ b/tests/run-make/rustdoc-default-output/rmake.rs @@ -3,10 +3,10 @@ // ensures the output of rustdoc's help menu is as expected. // See https://github.com/rust-lang/rust/issues/88756 -use run_make_support::{bare_rustdoc, diff}; +use run_make_support::{diff, rustdoc}; fn main() { - let out = bare_rustdoc().run().stdout_utf8(); + let out = rustdoc().run().stdout_utf8(); diff() .expected_file("output-default.stdout") .actual_text("actual", out) |
