mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Rollup merge of #64067 - Mark-Simulacrum:valgrind-dyn, r=alexcrichton
Remove no-prefer-dynamic from valgrind tests This seems to be working locally. Resolves #31968
This commit is contained in:
commit
e61813548a
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
#![allow(dead_code)]
|
||||
|
||||
// check dtor calling order when casting enums.
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
// This would previously leak the Box<Trait> because we wouldn't
|
||||
// schedule cleanups when auto borrowing trait objects.
|
||||
// This program should be valgrind clean.
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
fn main() {
|
||||
let _ = std::io::stdin();
|
||||
let _ = std::io::stdout();
|
||||
|
@ -1,4 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
// ignore-emscripten
|
||||
|
||||
thread_local!(static FOO: Foo = Foo);
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
static mut DROP_RAN: bool = false;
|
||||
|
||||
struct Foo;
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
static mut DROP_RAN: isize = 0;
|
||||
|
||||
struct Foo;
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
#![feature(unsized_tuple_coercion)]
|
||||
|
||||
static mut DROP_RAN: bool = false;
|
||||
|
@ -1,5 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
|
||||
#![feature(unsized_tuple_coercion)]
|
||||
|
||||
static mut DROP_RAN: isize = 0;
|
||||
|
@ -1,4 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
// ignore-cloudabi
|
||||
// ignore-emscripten
|
||||
// ignore-sgx no processes
|
||||
|
@ -1,4 +1,3 @@
|
||||
// no-prefer-dynamic
|
||||
// pretty-expanded FIXME #23616
|
||||
|
||||
#![feature(rustc_private)]
|
||||
|
Loading…
Reference in New Issue
Block a user