about summary refs log tree commit diff
path: root/tests/rustdoc-ui/doctest/unstable-opts-143930.rs
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-10-03 21:10:33 +0200
committerGitHub <noreply@github.com>2025-10-03 21:10:33 +0200
commitdbc5e72ea203029c1ceb87e46d84800bb90eaf7f (patch)
treed060da246e4fe6b940a2492c8a38cea404a9f5c4 /tests/rustdoc-ui/doctest/unstable-opts-143930.rs
parent9e477c4386c35dbc59ce70f532cdd05288e1926f (diff)
parentc1443e2591c284f6ac8372d15c88f8d6c9470e4c (diff)
downloadrust-dbc5e72ea203029c1ceb87e46d84800bb90eaf7f.tar.gz
rust-dbc5e72ea203029c1ceb87e46d84800bb90eaf7f.zip
Rollup merge of #147292 - Urgau:rustdoc-test-unstable_opts, r=fmease
Respect `-Z` unstable options in `rustdoc --test`

This PR makes rustdoc respect `-Z` unstable options when collecting doctests (`rustdoc --test`).

In the process I also realized that `--error-format` wasn't respected as well, making UI annotations impossible to write so I fixed that as well.

Best reviewed commit by commit.

Fixes https://github.com/rust-lang/rust/issues/147276
Fixes https://github.com/rust-lang/rust/issues/143930
r? fmease
Diffstat (limited to 'tests/rustdoc-ui/doctest/unstable-opts-143930.rs')
-rw-r--r--tests/rustdoc-ui/doctest/unstable-opts-143930.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/doctest/unstable-opts-143930.rs b/tests/rustdoc-ui/doctest/unstable-opts-143930.rs
new file mode 100644
index 00000000000..30c47f5b7e9
--- /dev/null
+++ b/tests/rustdoc-ui/doctest/unstable-opts-143930.rs
@@ -0,0 +1,14 @@
+// This test verifies that unstable options like `-Zcrate-attr` are respected when `--test` is
+// passed.
+//
+// <https://github.com/rust-lang/rust/issues/143930>
+//
+// NOTE: If any of these command line arguments or features get stabilized, please replace with
+// another unstable one.
+
+//@ check-pass
+//@ normalize-stdout: "finished in \d+\.\d+s" -> "finished in $$TIME"
+//@ compile-flags: --test -Zcrate-attr=feature(register_tool) -Zcrate-attr=register_tool(rapx)
+
+#[rapx::tag]
+fn f() {}