summaryrefslogtreecommitdiffstats
path: root/tests/run-make/weird-output-filenames/Makefile
blob: d3a34e3b46e8979ff5fde1e22019616d9cfef1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include ../tools.mk

all:
	cp foo.rs $(TMPDIR)/.foo.rs
	$(RUSTC) $(TMPDIR)/.foo.rs 2>&1 \
		| $(CGREP) -e "invalid character.*in crate name:"
	cp foo.rs $(TMPDIR)/.foo.bar
	$(RUSTC) $(TMPDIR)/.foo.bar 2>&1 \
		| $(CGREP) -e "invalid character.*in crate name:"
	cp foo.rs $(TMPDIR)/+foo+bar.rs
	$(RUSTC) $(TMPDIR)/+foo+bar.rs 2>&1 \
		| $(CGREP) -e "invalid character.*in crate name:"
	cp foo.rs $(TMPDIR)/-foo.rs
	$(RUSTC) $(TMPDIR)/-foo.rs 2>&1 \
		| $(CGREP) 'crate names cannot start with a `-`'