blob: b669f9cedc1e9d485fb40429dc869a04e9c7a8ce (
plain)
1
2
3
4
5
6
7
8
|
-include ../tools.mk
# Test that hir-tree output doesn't crash and includes
# the string constant we would expect to see.
all:
$(RUSTDOC) --test input.rs > $(TMPDIR)/output || true
$(CGREP) 'input.rs:17:15' < $(TMPDIR)/output
|