-
Notifications
You must be signed in to change notification settings - Fork 13k
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 #71531 - spastorino:move-treat-err-as-bug-tests-to-ui…
…, r=oli-obk Move treat err as bug tests to ui cc `@oli-obk`
- Loading branch information
Showing
7 changed files
with
45 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
src/test/run-make-fulldeps/treat-err-as-bug/delay_span_bug.rs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
// compile-flags: -Ztreat-err-as-bug | ||
// failure-status: 101 | ||
// error-pattern: aborting due to `-Z treat-err-as-bug=1` | ||
// error-pattern: [trigger_delay_span_bug] trigger a delay span bug | ||
// normalize-stderr-test "note: .*\n\n" -> "" | ||
// normalize-stderr-test "thread 'rustc' panicked.*\n" -> "" | ||
|
||
#![feature(rustc_attrs)] | ||
|
||
#[rustc_error(delay_span_bug_from_inside_query)] | ||
fn main() {} |
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: internal compiler error: delayed span bug triggered by #[rustc_error(delay_span_bug_from_inside_query)] | ||
--> $DIR/delay_span_bug.rs:11:1 | ||
| | ||
LL | fn main() {} | ||
| ^^^^^^^^^ | ||
|
||
error: internal compiler error: unexpected panic | ||
|
||
query stack during panic: | ||
#0 [trigger_delay_span_bug] trigger a delay span bug | ||
end of query stack |
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 @@ | ||
// compile-flags: -Ztreat-err-as-bug | ||
// failure-status: 101 | ||
// error-pattern: aborting due to `-Z treat-err-as-bug=1` | ||
// error-pattern: [eval_to_allocation_raw] const-evaluating + checking `C` | ||
// normalize-stderr-test "note: .*\n\n" -> "" | ||
// normalize-stderr-test "thread 'rustc' panicked.*\n" -> "" | ||
|
||
#![crate_type = "rlib"] | ||
|
||
pub static C: u32 = 0 - 1; | ||
//~^ ERROR could not evaluate static initializer |
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,12 @@ | ||
error[E0080]: could not evaluate static initializer | ||
--> $DIR/err.rs:10:21 | ||
| | ||
LL | pub static C: u32 = 0 - 1; | ||
| ^^^^^ attempt to compute `0_u32 - 1_u32`, which would overflow | ||
|
||
error: internal compiler error: unexpected panic | ||
|
||
query stack during panic: | ||
#0 [eval_to_allocation_raw] const-evaluating + checking `C` | ||
#1 [eval_to_allocation_raw] const-evaluating + checking `C` | ||
end of query stack |