about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-scrape-examples-paths
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/rustdoc-scrape-examples-paths')
-rw-r--r--tests/run-make/rustdoc-scrape-examples-paths/foo/Cargo.toml8
-rw-r--r--tests/run-make/rustdoc-scrape-examples-paths/foo/examples/complex.rs3
-rw-r--r--tests/run-make/rustdoc-scrape-examples-paths/foo/examples/tester.rs1
-rw-r--r--tests/run-make/rustdoc-scrape-examples-paths/foo/src/lib.rs7
-rw-r--r--tests/run-make/rustdoc-scrape-examples-paths/rmake.rs16
5 files changed, 0 insertions, 35 deletions
diff --git a/tests/run-make/rustdoc-scrape-examples-paths/foo/Cargo.toml b/tests/run-make/rustdoc-scrape-examples-paths/foo/Cargo.toml
deleted file mode 100644
index 6962028375b..00000000000
--- a/tests/run-make/rustdoc-scrape-examples-paths/foo/Cargo.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-[package]
-name = "foo"
-version = "0.0.1"
-edition = "2024"
-
-[[example]]
-name = "complex"
-doc-scrape-examples = true
diff --git a/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/complex.rs b/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/complex.rs
deleted file mode 100644
index 1cda7e098f4..00000000000
--- a/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/complex.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-fn main() {
-    let mut x = foo::X::new();
-}
diff --git a/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/tester.rs b/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/tester.rs
deleted file mode 100644
index fbd1906ec09..00000000000
--- a/tests/run-make/rustdoc-scrape-examples-paths/foo/examples/tester.rs
+++ /dev/null
@@ -1 +0,0 @@
-// This file MUST exist to trigger the original bug.
diff --git a/tests/run-make/rustdoc-scrape-examples-paths/foo/src/lib.rs b/tests/run-make/rustdoc-scrape-examples-paths/foo/src/lib.rs
deleted file mode 100644
index a9bb0272c78..00000000000
--- a/tests/run-make/rustdoc-scrape-examples-paths/foo/src/lib.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-pub struct X;
-
-impl X {
-    pub fn new() -> Self {
-        X
-    }
-}
diff --git a/tests/run-make/rustdoc-scrape-examples-paths/rmake.rs b/tests/run-make/rustdoc-scrape-examples-paths/rmake.rs
deleted file mode 100644
index 6784e438762..00000000000
--- a/tests/run-make/rustdoc-scrape-examples-paths/rmake.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-//! Test to ensure that the rustdoc `scrape-examples` feature is not panicking.
-//! Regression test for <https://github.com/rust-lang/rust/issues/144752>.
-
-use run_make_support::cargo;
-use run_make_support::scoped_run::run_in_tmpdir;
-
-fn main() {
-    // We copy the crate to be documented "outside" to prevent documenting
-    // the whole compiler.
-    std::env::set_current_dir("foo").unwrap();
-    run_in_tmpdir(|| {
-        // The `scrape-examples` feature is also implemented in `cargo` so instead of reproducing
-        // what `cargo` does, better to just let `cargo` do it.
-        cargo().args(["doc", "-p", "foo", "-Zrustdoc-scrape-examples"]).run();
-    })
-}