blob: 6db737a9e72a2f2ea9d2617e982af8fa08e3a6c0 (
plain)
1
2
3
4
5
6
7
|
-include ../tools.mk
all: foo.rs
$(RUSTC) --cfg 'feature="bar"' --crate-type lib foo.rs
$(RUSTDOC) --test --cfg 'feature="bar"' \
-L $(TMPDIR) foo.rs |\
$(CGREP) 'foo.rs - foo (line 11) ... ok'
|