rust/src/test/run-make/unicode-input/Makefile
2014-04-28 11:45:30 +09:00

19 lines
394 B
Makefile

-include ../tools.mk
# FIXME ignore windows
ifndef IS_WINDOWS
all:
# check that we don't ICE on unicode input, issue #11178
$(RUSTC) multiple_files.rs
$(call RUN,multiple_files) "$(RUSTC)" "$(TMPDIR)"
# check that our multibyte-ident spans are (approximately) the
# correct length. issue #8706
$(RUSTC) span_length.rs
$(call RUN,span_length) "$(RUSTC)" "$(TMPDIR)"
else
all:
endif