26e1ce7394
apparently I missed some tests in the last commit. Rather than having dozens of tests use the long version, use the short version in `run-make` and the long version in `run-make-fulldeps` (which is now only three tests)
22 lines
735 B
Makefile
22 lines
735 B
Makefile
include ../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
|