File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ pub fn report_error<'tcx, 'mir>(
291
291
ValidationErrorKind :: PointerAsInt { .. } | ValidationErrorKind :: PartialPointer
292
292
) =>
293
293
{
294
- ecx. handle_ice ( ) ; // print interpreter backtrace
294
+ ecx. handle_ice ( ) ; // print interpreter backtrace (this is outside the eval `catch_unwind`)
295
295
bug ! (
296
296
"This validation error should be impossible in Miri: {}" ,
297
297
format_interp_error( ecx. tcx. dcx( ) , e)
@@ -308,7 +308,7 @@ pub fn report_error<'tcx, 'mir>(
308
308
InvalidProgramInfo :: AlreadyReported ( _) | InvalidProgramInfo :: Layout ( ..) ,
309
309
) => "post-monomorphization error" ,
310
310
_ => {
311
- ecx. handle_ice ( ) ; // print interpreter backtrace
311
+ ecx. handle_ice ( ) ; // print interpreter backtrace (this is outside the eval `catch_unwind`)
312
312
bug ! (
313
313
"This error should be impossible in Miri: {}" ,
314
314
format_interp_error( ecx. tcx. dcx( ) , e)
Original file line number Diff line number Diff line change 1
1
//! Ensure that the MIR validator runs on Miri's input.
2
2
//@rustc-env:RUSTC_ICE=0
3
- //@normalize-stderr-test: "\n +[0-9]+:[^\n] +" -> ""
4
- //@normalize-stderr-test: "\n +at [^\n] +" -> ""
5
- //@normalize-stderr-test: "\n +\[\.\.\. omitted [0-9]+ frames? \.\.\.\]" -> ""
3
+ //@normalize-stderr-test: "\n +[0-9]+:. +" -> ""
4
+ //@normalize-stderr-test: "\n +at . +" -> ""
5
+ //@normalize-stderr-test: "\n +\[\.\.\. omitted [0-9]+ frames? \.\.\.\].* " -> ""
6
6
//@normalize-stderr-test: "\n[ =]*note:.*" -> ""
7
7
//@normalize-stderr-test: "DefId\([^()]*\)" -> "DefId"
8
+ // Somehow on rustc Windows CI, the "Miri caused an ICE" message is not shown
9
+ // and we don't even get a regular panic; rustc aborts with a different exit code instead.
10
+ //@ignore-host-windows
8
11
#![ feature( custom_mir, core_intrinsics) ]
9
12
use core:: intrinsics:: mir:: * ;
10
13
You can’t perform that action at this time.
0 commit comments