Add regression test for echo 'mod unknown;' | rustc -
This commit is contained in:
parent
a6236fa460
commit
86433e6ed1
3 changed files with 24 additions and 0 deletions
13
tests/run-make/unknown-mod-stdin/Makefile
Normal file
13
tests/run-make/unknown-mod-stdin/Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
include ../tools.mk
|
||||
|
||||
all:
|
||||
echo 'mod unknown;' | $(RUSTC) --crate-type rlib - >$(TMPDIR)/unknown-mod.stdout 2>$(TMPDIR)/unknown-mod.stderr || echo "failed successfully"
|
||||
|
||||
# Bless like this: RUSTC_BLESS_TEST=1 ./x.py test tests/run-make/unknown-mod-stdin
|
||||
ifdef RUSTC_BLESS_TEST
|
||||
cp "$(TMPDIR)"/unknown-mod.stdout unknown-mod.stdout
|
||||
cp "$(TMPDIR)"/unknown-mod.stderr unknown-mod.stderr
|
||||
else
|
||||
$(DIFF) unknown-mod.stdout "$(TMPDIR)"/unknown-mod.stdout
|
||||
$(DIFF) unknown-mod.stderr "$(TMPDIR)"/unknown-mod.stderr
|
||||
endif
|
||||
11
tests/run-make/unknown-mod-stdin/unknown-mod.stderr
Normal file
11
tests/run-make/unknown-mod-stdin/unknown-mod.stderr
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
error[E0583]: file not found for module `unknown`
|
||||
--> <anon>:1:1
|
||||
|
|
||||
1 | mod unknown;
|
||||
| ^^^^^^^^^^^^
|
||||
|
|
||||
= help: to create the module `unknown`, create file "unknown.rs" or "unknown/mod.rs"
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0583`.
|
||||
0
tests/run-make/unknown-mod-stdin/unknown-mod.stdout
Normal file
0
tests/run-make/unknown-mod-stdin/unknown-mod.stdout
Normal file
Loading…
Add table
Add a link
Reference in a new issue