about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-scrape-examples-paths/foo
diff options
context:
space:
mode:
authorJieyou Xu <jieyouxu@outlook.com>2025-09-05 16:28:10 +0800
committerJieyou Xu <jieyouxu@outlook.com>2025-09-05 21:22:51 +0800
commit7154d39231fd8051bc207dda3afba21a11b14fcd (patch)
tree1d04e8f643f458d0155151a0130c29ec3000b402 /tests/run-make/rustdoc-scrape-examples-paths/foo
parentaebcbe0a4b1bb7df327bccf94a82117b4ca99a9f (diff)
downloadrust-7154d39231fd8051bc207dda3afba21a11b14fcd.tar.gz
rust-7154d39231fd8051bc207dda3afba21a11b14fcd.zip
tests: move `run-make` tests requiring in-tree cargo to `run-make-cargo` test suite
Diffstat (limited to 'tests/run-make/rustdoc-scrape-examples-paths/foo')
-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
4 files changed, 0 insertions, 19 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
-    }
-}