summary refs log tree commit diff
path: root/src/test/run-make/hir-tree/Makefile
blob: bedb2b7d6aa5069a89d7a7687d30cdabe0b29d8b (plain)
1
2
3
4
5
6
7
8
9
-include ../tools.mk

# Test that hir-tree output doens't crash and includes
# the string constant we would expect to see.

all:
	$(RUSTC) -o $(TMPDIR)/input.hir -Z unstable-options \
		--unpretty=hir-tree input.rs
	$(CGREP) '"Hello, Rustaceans!\n"' < $(TMPDIR)/input.hir