blob: e09343aa93790754a25d910068c619fa70c125bd (
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:7:15' < $(TMPDIR)/output
|