From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/run-make/rustdoc-scrape-examples-whitespace/Makefile | 5 +++++ tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs | 8 ++++++++ tests/run-make/rustdoc-scrape-examples-whitespace/src/lib.rs | 3 +++ 3 files changed, 16 insertions(+) create mode 100644 tests/run-make/rustdoc-scrape-examples-whitespace/Makefile create mode 100644 tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs create mode 100644 tests/run-make/rustdoc-scrape-examples-whitespace/src/lib.rs (limited to 'tests/run-make/rustdoc-scrape-examples-whitespace') diff --git a/tests/run-make/rustdoc-scrape-examples-whitespace/Makefile b/tests/run-make/rustdoc-scrape-examples-whitespace/Makefile new file mode 100644 index 000000000..7786ff762 --- /dev/null +++ b/tests/run-make/rustdoc-scrape-examples-whitespace/Makefile @@ -0,0 +1,5 @@ +deps := ex + +include ../rustdoc-scrape-examples-multiple/scrape.mk + +all: scrape diff --git a/tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs b/tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs new file mode 100644 index 000000000..44ff689df --- /dev/null +++ b/tests/run-make/rustdoc-scrape-examples-whitespace/examples/ex.rs @@ -0,0 +1,8 @@ +struct Foo; +impl Foo { + fn bar() { foobar::ok(); } +} + +fn main() { + Foo::bar(); +} diff --git a/tests/run-make/rustdoc-scrape-examples-whitespace/src/lib.rs b/tests/run-make/rustdoc-scrape-examples-whitespace/src/lib.rs new file mode 100644 index 000000000..28c34716c --- /dev/null +++ b/tests/run-make/rustdoc-scrape-examples-whitespace/src/lib.rs @@ -0,0 +1,3 @@ +// @has foobar/fn.ok.html '//*[@class="docblock scraped-example-list"]//code' ' ' + +pub fn ok() {} -- cgit v1.2.3