summary refs log tree commit diff
path: root/src/test/run-make/hir-tree/Makefile
blob: 2e100b269e14bfa440f429d84050a3ad0be50256 (plain)
1
2
3
4
5
6
7
8
-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 unpretty=hir-tree input.rs
	$(CGREP) '"Hello, Rustaceans!\n"' < $(TMPDIR)/input.hir