rust/tests/run-make/rustdoc-error-lines/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
487 B
Makefile
Raw Normal View History

include ../tools.mk
2018-01-09 23:04:14 -06:00
2018-08-19 08:30:23 -05:00
# Test that hir-tree output doesn't crash and includes
2018-01-09 23:04:14 -06:00
# the string constant we would expect to see.
all:
$(RUSTDOC) --test input.rs > $(TMPDIR)/output || true
$(CGREP) 'input.rs - foo (line 5)' < $(TMPDIR)/output
2018-12-25 09:56:47 -06:00
$(CGREP) 'input.rs:7:15' < $(TMPDIR)/output
$(CGREP) 'input.rs - bar (line 15)' < $(TMPDIR)/output
$(CGREP) 'input.rs:17:15' < $(TMPDIR)/output
$(CGREP) 'input.rs - bar (line 24)' < $(TMPDIR)/output
$(CGREP) 'input.rs:26:15' < $(TMPDIR)/output