about summary refs log tree commit diff
path: root/tests/rustdoc/extern-html-root-url.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:30:40 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:49:12 +0200
commite14e19a67dcdd7437b29bd37b4aa1fde3e5fecee (patch)
tree72413ee76e1e858195fc1f623c0bc4e6da36f5fe /tests/rustdoc/extern-html-root-url.rs
parente245c3bc6bb7d278106649be9a03fc9b374e196b (diff)
downloadrust-e14e19a67dcdd7437b29bd37b4aa1fde3e5fecee.tar.gz
rust-e14e19a67dcdd7437b29bd37b4aa1fde3e5fecee.zip
Created `tests/rustdoc/extern` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/extern-html-root-url.rs')
-rw-r--r--tests/rustdoc/extern-html-root-url.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/rustdoc/extern-html-root-url.rs b/tests/rustdoc/extern-html-root-url.rs
deleted file mode 100644
index a503e829de4..00000000000
--- a/tests/rustdoc/extern-html-root-url.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-//@ compile-flags:-Z unstable-options --extern-html-root-url html_root=https://example.com/override --extern-html-root-url no_html_root=https://example.com/override
-//@ aux-build:html_root.rs
-//@ aux-build:no_html_root.rs
-// NOTE: intentionally does not build any auxiliary docs
-
-extern crate html_root;
-extern crate no_html_root;
-
-//@ has extern_html_root_url/index.html
-// `html_root_url` should override `--extern-html-root-url`
-//@ has - '//a/@href' 'https://example.com/html_root/html_root/fn.foo.html'
-#[doc(no_inline)]
-pub use html_root::foo;
-
-#[doc(no_inline)]
-// `--extern-html-root-url` should apply if no `html_root_url` is given
-//@ has - '//a/@href' 'https://example.com/override/no_html_root/fn.bar.html'
-pub use no_html_root::bar;