forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#114093 - Enselic:stdin-unknown-mod, r=Mark-…
…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
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.