-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a few tests with target-specific output
Enable one fully ignored test
- Loading branch information
1 parent
7977250
commit 21d67c4
Showing
11 changed files
with
51 additions
and
31 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
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
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,8 @@ | ||
error: couldn't read $DIR/../parser: $ACCESS_DENIED_MSG (os error $ACCESS_DENIED_CODE) | ||
--> $DIR/issue-5806.rs:16:5 | ||
| | ||
LL | mod foo; //~ ERROR couldn't read | ||
| ^^^ | ||
|
||
error: aborting due to previous error | ||
|
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
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 `not_a_real_file` | ||
--> $DIR/mod_file_not_exist.rs:14:5 | ||
| | ||
LL | mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file` | ||
| ^^^^^^^^^^^^^^^ | ||
| | ||
= help: name the file either not_a_real_file.rs or not_a_real_file/mod.rs inside the directory "$DIR" | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0583`. |
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
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 `not_a_real_file` | ||
--> $DIR/mod_file_not_exist_windows.rs:14:5 | ||
| | ||
LL | mod not_a_real_file; //~ ERROR file not found for module `not_a_real_file` | ||
| ^^^^^^^^^^^^^^^ | ||
| | ||
= help: name the file either not_a_real_file.rs or not_a_real_file/mod.rs inside the directory "$DIR" | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0583`. |
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
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
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
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,8 @@ | ||
error: expected `:`, found `[` | ||
--> $DIR/regions-out-of-scope-slice.rs:21:19 | ||
| | ||
LL | x = &'blk [1,2,3]; //~ ERROR expected `:`, found `[` | ||
| ^ expected `:` | ||
|
||
error: aborting due to previous error | ||
|