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-with-output-option/Makefile | 8 ++++++++ tests/run-make/rustdoc-with-output-option/src/lib.rs | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 tests/run-make/rustdoc-with-output-option/Makefile create mode 100644 tests/run-make/rustdoc-with-output-option/src/lib.rs (limited to 'tests/run-make/rustdoc-with-output-option') diff --git a/tests/run-make/rustdoc-with-output-option/Makefile b/tests/run-make/rustdoc-with-output-option/Makefile new file mode 100644 index 000000000..02093a35c --- /dev/null +++ b/tests/run-make/rustdoc-with-output-option/Makefile @@ -0,0 +1,8 @@ +include ../../run-make-fulldeps/tools.mk + +OUTPUT_DIR := "$(TMPDIR)/rustdoc" + +all: + $(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --output $(OUTPUT_DIR) + + $(HTMLDOCCK) $(OUTPUT_DIR) src/lib.rs diff --git a/tests/run-make/rustdoc-with-output-option/src/lib.rs b/tests/run-make/rustdoc-with-output-option/src/lib.rs new file mode 100644 index 000000000..044bb6acb --- /dev/null +++ b/tests/run-make/rustdoc-with-output-option/src/lib.rs @@ -0,0 +1,2 @@ +// @has foobar/fn.ok.html +pub fn ok() {} -- cgit v1.2.3