blob: 0f927320c4e58b0e29be1498f3f6677d099de122 (
plain)
1
2
3
4
5
6
7
|
-include ../tools.mk
all: foo.rs
$(RUSTC) --cfg 'feature="bar"' --crate-type lib foo.rs
$(HOST_RPATH_ENV) $(RUSTDOC) --test --cfg 'feature="bar"' \
-L $(TMPDIR) foo.rs |\
grep --quiet 'test foo_0 ... ok'
|