add Miri tests
This commit is contained in:
parent
9b05e154f3
commit
408c8eb983
4 changed files with 61 additions and 0 deletions
14
src/tools/miri/tests/fail/storage-live-dead-var.rs
Normal file
14
src/tools/miri/tests/fail/storage-live-dead-var.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#![feature(core_intrinsics, custom_mir)]
|
||||
use std::intrinsics::mir::*;
|
||||
|
||||
#[custom_mir(dialect = "runtime")]
|
||||
fn main() {
|
||||
mir! {
|
||||
let val: i32;
|
||||
{
|
||||
val = 42; //~ERROR: accessing a dead local variable
|
||||
StorageLive(val); // too late... (but needs to be here to make `val` not implicitly live)
|
||||
Return()
|
||||
}
|
||||
}
|
||||
}
|
||||
15
src/tools/miri/tests/fail/storage-live-dead-var.stderr
Normal file
15
src/tools/miri/tests/fail/storage-live-dead-var.stderr
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
error: Undefined Behavior: accessing a dead local variable
|
||||
--> $DIR/storage-live-dead-var.rs:LL:CC
|
||||
|
|
||||
LL | val = 42;
|
||||
| ^^^^^^^^ accessing a dead local variable
|
||||
|
|
||||
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
|
||||
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
|
||||
= note: BACKTRACE:
|
||||
= note: inside `main` at $DIR/storage-live-dead-var.rs:LL:CC
|
||||
|
||||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
17
src/tools/miri/tests/fail/storage-live-resets-var.rs
Normal file
17
src/tools/miri/tests/fail/storage-live-resets-var.rs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#![feature(core_intrinsics, custom_mir)]
|
||||
use std::intrinsics::mir::*;
|
||||
|
||||
#[custom_mir(dialect = "runtime")]
|
||||
fn main() {
|
||||
mir! {
|
||||
let val: i32;
|
||||
let _val2: i32;
|
||||
{
|
||||
StorageLive(val);
|
||||
val = 42;
|
||||
StorageLive(val); // reset val to `uninit`
|
||||
_val2 = val; //~ERROR: uninitialized
|
||||
Return()
|
||||
}
|
||||
}
|
||||
}
|
||||
15
src/tools/miri/tests/fail/storage-live-resets-var.stderr
Normal file
15
src/tools/miri/tests/fail/storage-live-resets-var.stderr
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
error: Undefined Behavior: constructing invalid value: encountered uninitialized memory, but expected an integer
|
||||
--> $DIR/storage-live-resets-var.rs:LL:CC
|
||||
|
|
||||
LL | _val2 = val;
|
||||
| ^^^^^^^^^^^ constructing invalid value: encountered uninitialized memory, but expected an integer
|
||||
|
|
||||
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
|
||||
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
|
||||
= note: BACKTRACE:
|
||||
= note: inside `main` at $DIR/storage-live-resets-var.rs:LL:CC
|
||||
|
||||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue