Skip to content

Commit

Permalink
Rollup merge of rust-lang#114093 - Enselic:stdin-unknown-mod, r=Mark-…
Browse files Browse the repository at this point in the history
…Simulacrum

Add regression test for `echo 'mod unknown;' | rustc -`

Closes rust-lang#65601

The bug is fixed since long ago, probably by rust-lang#69838 (see rust-lang#65601 (comment) for more details).
Add a regression test so we can close the issue.
  • Loading branch information
matthiaskrgr committed Aug 7, 2023
2 parents bab20b4 + 392bfc6 commit 61c55e3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/run-make/unknown-mod-stdin/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ignore-windows

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 61c55e3

Please sign in to comment.