mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
22 lines
756 B
Makefile
22 lines
756 B
Makefile
|
include ../../run-make-fulldeps/tools.mk
|
||
|
|
||
|
# Check that valid binaries are persisted by running them, regardless of whether the --run or --no-run option is used.
|
||
|
|
||
|
all: run no_run
|
||
|
|
||
|
run:
|
||
|
mkdir -p $(TMPDIR)/doctests
|
||
|
$(RUSTC) --crate-type rlib t.rs
|
||
|
$(RUSTDOC) -Zunstable-options --test --persist-doctests $(TMPDIR)/doctests --extern t=$(TMPDIR)/libt.rlib t.rs
|
||
|
$(TMPDIR)/doctests/t_rs_2_0/rust_out
|
||
|
$(TMPDIR)/doctests/t_rs_8_0/rust_out
|
||
|
rm -rf $(TMPDIR)/doctests
|
||
|
|
||
|
no_run:
|
||
|
mkdir -p $(TMPDIR)/doctests
|
||
|
$(RUSTC) --crate-type rlib t.rs
|
||
|
$(RUSTDOC) -Zunstable-options --test --persist-doctests $(TMPDIR)/doctests --extern t=$(TMPDIR)/libt.rlib t.rs --no-run
|
||
|
$(TMPDIR)/doctests/t_rs_2_0/rust_out
|
||
|
$(TMPDIR)/doctests/t_rs_8_0/rust_out
|
||
|
rm -rf $(TMPDIR)/doctests
|