Migrate run-make/rustdoc-scrape-examples-whitespace to rmake.rs

This commit is contained in:
Guillaume Gomez 2024-05-20 12:09:11 +02:00
parent f092f73c11
commit 7b0fd3b931
3 changed files with 6 additions and 6 deletions

View File

@ -236,7 +236,6 @@ run-make/rustc-macro-dep-files/Makefile
run-make/rustdoc-io-error/Makefile
run-make/rustdoc-scrape-examples-macros/Makefile
run-make/rustdoc-scrape-examples-multiple/Makefile
run-make/rustdoc-scrape-examples-whitespace/Makefile
run-make/rustdoc-verify-output-files/Makefile
run-make/rustdoc-with-output-option/Makefile
run-make/rustdoc-with-short-out-dir-option/Makefile

View File

@ -1,5 +0,0 @@
deps := ex
include ../rustdoc-scrape-examples-multiple/scrape.mk
all: scrape

View File

@ -0,0 +1,6 @@
#[path = "../rustdoc-scrape-examples-remap/scrape.rs"]
mod scrape;
fn main() {
scrape::scrape(&[]);
}