-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #67580 - RalfJung:miri-unleash-tests, r=oli-obk
test the unleashed Miri In particular, test what happens when we try to drop something. Cc rust-lang/const-eval#17 r? @oli-obk
- Loading branch information
Showing
4 changed files
with
61 additions
and
17 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,20 @@ | ||
// compile-flags: -Zunleash-the-miri-inside-of-you | ||
// ignore-x86 FIXME: missing sysroot spans (#53081) | ||
// error-pattern: calling non-const function `<std::vec::Vec<i32> as std::ops::Drop>::drop` | ||
#![deny(const_err)] | ||
|
||
use std::mem::ManuallyDrop; | ||
|
||
fn main() {} | ||
|
||
static TEST_OK: () = { | ||
let v: Vec<i32> = Vec::new(); | ||
let _v = ManuallyDrop::new(v); | ||
}; | ||
|
||
// Make sure we catch executing bad drop functions. | ||
// The actual error is tested by the error-pattern above. | ||
static TEST_BAD: () = { | ||
let _v: Vec<i32> = Vec::new(); | ||
//~^ WARN skipping const check | ||
}; |
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,24 @@ | ||
warning: skipping const checks | ||
--> $DIR/drop.rs:18:9 | ||
| | ||
LL | let _v: Vec<i32> = Vec::new(); | ||
| ^^ | ||
|
||
error[E0080]: could not evaluate static initializer | ||
--> $SRC_DIR/libcore/ptr/mod.rs:LL:COL | ||
| | ||
LL | / unsafe fn real_drop_in_place<T: ?Sized>(to_drop: &mut T) { | ||
LL | | // Code here does not matter - this is replaced by the | ||
LL | | // real drop glue by the compiler. | ||
LL | | real_drop_in_place(to_drop) | ||
LL | | } | ||
| |_^ calling non-const function `<std::vec::Vec<i32> as std::ops::Drop>::drop` | ||
| | ||
::: $DIR/drop.rs:20:1 | ||
| | ||
LL | }; | ||
| - inside call to `std::ptr::real_drop_in_place::<std::vec::Vec<i32>> - shim(Some(std::vec::Vec<i32>))` at $DIR/drop.rs:20:1 | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0080`. |