4851d5663c
`run-make-fulldeps` is never cross-compiled, so a lot of these tests never accounted for --target. Ignore them when cross-compiling for now.
23 lines
758 B
Makefile
23 lines
758 B
Makefile
# ignore-cross-compile
|
|
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
|