Skip to content

Commit

Permalink
Add regression test for echo 'mod unknown;' | rustc -
Browse files Browse the repository at this point in the history
  • Loading branch information
Enselic committed Jul 26, 2023
1 parent a6236fa commit 86433e6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/run-make/unknown-mod-stdin/Makefile
Original file line number Diff line number Diff line change
@@ -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 changes: 11 additions & 0 deletions tests/run-make/unknown-mod-stdin/unknown-mod.stderr
Original file line number Diff line number Diff line change
@@ -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`.
Empty file.

0 comments on commit 86433e6

Please sign in to comment.