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

Doctest merging doesn't work at all on stable #137898

Closed
notriddle opened this issue Mar 2, 2025 · 7 comments · Fixed by #137899
Closed

Doctest merging doesn't work at all on stable #137898

notriddle opened this issue Mar 2, 2025 · 7 comments · Fixed by #137899
Labels
A-doctests Area: Documentation tests, run by rustdoc A-edition-2024 Area: The 2024 edition C-bug Category: This is a bug. I-edition-triaged Issue: This issue has been reviewed and triaged by the Edition team. I-slow Issue: Problems and improvements with respect to performance of generated code. P-critical Critical priority T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Comments

@notriddle
Copy link
Contributor

notriddle commented Mar 2, 2025

I downloaded the current stable branch, and set up this sample crate to detect if the test is running in merged mode.

//! ```rust
//! let location = std::panic::Location::caller();
//! assert_eq!(location.line(), 11);
//! ```

If I run RUSTC_BOOTSTRAP=1 cargo +stable test it passes. If I drop the bootstrap env, it fails.

#![allow(unused_extern_crates)]
#![allow(internal_features)]
#![feature(test)]
#![feature(rustc_attrs)]

Meta

rustc --version --verbose:

rustc 1.85.0 (4d91de4e4 2025-02-17)
binary: rustc
commit-hash: 4d91de4e48198da2e33413efdcd9cd2cc0c46688
commit-date: 2025-02-17
host: aarch64-apple-darwin
release: 1.85.0
LLVM version: 19.1.7
@notriddle notriddle added C-bug Category: This is a bug. I-slow Issue: Problems and improvements with respect to performance of generated code. labels Mar 2, 2025
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Mar 2, 2025
notriddle added a commit to notriddle/rust that referenced this issue Mar 2, 2025
Fixes rust-lang#137898

The generated multi-test harness relies on nightly-only APIs,
so the only way to run it on stable is to enable them. Since
tests that use crate attrs don't be merged, there's no way to use
nightly-only features on it anyway.
@jieyouxu jieyouxu added the T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. label Mar 3, 2025
@fmease fmease added P-critical Critical priority A-edition-2024 Area: The 2024 edition and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Mar 3, 2025
@aDotInTheVoid
Copy link
Member

aDotInTheVoid commented Mar 3, 2025

I can't reproduce this locally:

gh-aDotInTheVoid@dev-desktop-eu-1:~/tmp/merge-may-be-borked$ cat ./Cargo.toml
[package]
name = "merge-may-be-borked"
version = "0.1.0"
edition = "2024"

[dependencies]
gh-aDotInTheVoid@dev-desktop-eu-1:~/tmp/merge-may-be-borked$ cat ./src/lib.rs
//! ```rust
//! let location = std::panic::Location::caller();
//! assert_eq!(location.line(), 11);
//! ```
gh-aDotInTheVoid@dev-desktop-eu-1:~/tmp/merge-may-be-borked$ cargo +stable -vV
cargo 1.85.0 (d73d2caf9 2024-12-31)
release: 1.85.0
commit-hash: d73d2caf9e41a39daf2a8d6ce60ec80bf354d2a7
commit-date: 2024-12-31
host: aarch64-unknown-linux-gnu
libgit2: 1.8.1 (sys:0.19.0 vendored)
libcurl: 8.9.0-DEV (sys:0.4.74+curl-8.9.0 vendored ssl:OpenSSL/1.1.1w)
ssl: OpenSSL 1.1.1w  11 Sep 2023
os: Ubuntu 24.4.0 (noble) [64-bit]
gh-aDotInTheVoid@dev-desktop-eu-1:~/tmp/merge-may-be-borked$ echo $RUSTC_BOOTSTRAP

gh-aDotInTheVoid@dev-desktop-eu-1:~/tmp/merge-may-be-borked$ cargo +stable test -v
       Fresh merge-may-be-borked v0.1.0 (/home/gh-aDotInTheVoid/tmp/merge-may-be-borked)
    Finished `test` profile [unoptimized + debuginfo] target(s) in 0.01s
     Running `/home/gh-aDotInTheVoid/tmp/merge-may-be-borked/target/debug/deps/merge_may_be_borked-89c18792c4538da4`

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

   Doc-tests merge_may_be_borked
     Running `/home/gh-aDotInTheVoid/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/rustdoc --edition=2024 --crate-type lib --color auto --crate-name merge_may_be_borked --test src/lib.rs --test-run-directory /home/gh-aDotInTheVoid/tmp/merge-may-be-borked -L dependency=/home/gh-aDotInTheVoid/tmp/merge-may-be-borked/target/debug/deps -L dependency=/home/gh-aDotInTheVoid/tmp/merge-may-be-borked/target/debug/deps --extern merge_may_be_borked=/home/gh-aDotInTheVoid/tmp/merge-may-be-borked/target/debug/deps/libmerge_may_be_borked-8b78cf23285ca111.rlib -C embed-bitcode=no --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values())' --error-format human`

running 1 test
test src/lib.rs - (line 1) ... FAILED

failures:

---- src/lib.rs - (line 1) stdout ----
Test executable failed (exit status: 101).

stderr:

thread 'main' panicked at src/lib.rs:4:1:
assertion `left == right` failed
  left: 3
 right: 11
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace



failures:
    src/lib.rs - (line 1)

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.19s

error: doctest failed, to rerun pass `--doc`

But I agree something spooky is up with merged doctests.

@fmease
Copy link
Member

fmease commented Mar 3, 2025

@aDotInTheVoid Yes, it fails without RUSTC_BOOTSTRAP=1 and succeeds with it. From the issue description:

If I run RUSTC_BOOTSTRAP=1 cargo +stable test it passes. If I drop the bootstrap env, it fails.

@fmease
Copy link
Member

fmease commented Mar 3, 2025

rustdoc +stable file.rs --edition 2024 --test:

Output

running 1 test
test file.rs - (line 1) ... FAILED

failures:

---- file.rs - (line 1) stdout ----
Test executable failed (exit status: 101).

stderr:

thread 'main' panicked at file.rs:4:1:
assertion `left == right` failed
  left: 3
 right: 11
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace



failures:
    file.rs - (line 1)

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.15s

error: process exited unsuccessfully: exit status: 101

RUSTC_BOOTSTRAP=1 rustdoc +stable file.rs --edition 2024 --test:


running 1 test
test file.rs - (line 1) ... ok

test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

@aDotInTheVoid
Copy link
Member

Ah, I thought this was an issue about it failing to build because it uses internal features. Sorry.

@fmease
Copy link
Member

fmease commented Mar 3, 2025

No worries. notriddle's reproducer demonstrates that rustdoc falls back to compiling the doctest standalone/isolated/unmerged (hence the "real" line number 3 over the "fake" 11) since it internally fails to compile it as merged due to #![feature(rustc_attrs, test)] present in the generated combined crate that isn't accepted on stable release channels.

@traviscross traviscross added the I-edition-triaged Issue: This issue has been reviewed and triaged by the Edition team. label Mar 4, 2025
bors added a commit to rust-lang-ci/rust that referenced this issue Mar 10, 2025
…fmease,GuillaumeGomez

doctests: fix merging on stable

Fixes rust-lang#137898

The generated multi-test harness relies on nightly-only APIs, so the only way to run it on stable is to enable them.

To prevent the executing test case from getting at any of the stuff that the harness uses, they're built as two separate crates. The test bundle isn't built with RUSTC_BOOTSTRAP, while the runner harness is.
@bors bors closed this as completed in 5d6eeea Mar 10, 2025
@fmease fmease reopened this Mar 10, 2025
@fmease
Copy link
Member

fmease commented Mar 10, 2025

Keeping this open until backported.

cuviper pushed a commit to cuviper/rust that referenced this issue Mar 14, 2025
Fixes rust-lang#137898

The generated multi-test harness relies on nightly-only APIs,
so the only way to run it on stable is to enable them. Since
tests that use crate attrs don't be merged, there's no way to use
nightly-only features on it anyway.

(cherry picked from commit 5d6eeea)
cuviper pushed a commit to cuviper/rust that referenced this issue Mar 15, 2025
Fixes rust-lang#137898

The generated multi-test harness relies on nightly-only APIs,
so the only way to run it on stable is to enable them. Since
tests that use crate attrs don't be merged, there's no way to use
nightly-only features on it anyway.

(cherry picked from commit 5d6eeea)
@cuviper
Copy link
Member

cuviper commented Mar 18, 2025

It's done as of 1.86-beta.6 and 1.85.1!

@cuviper cuviper closed this as completed Mar 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-doctests Area: Documentation tests, run by rustdoc A-edition-2024 Area: The 2024 edition C-bug Category: This is a bug. I-edition-triaged Issue: This issue has been reviewed and triaged by the Edition team. I-slow Issue: Problems and improvements with respect to performance of generated code. P-critical Critical priority T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
Development

Successfully merging a pull request may close this issue.

7 participants