1
Fork 0

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:
Mazdak Farrokhzad 2019-09-06 19:00:44 +02:00 committed by GitHub
commit e61813548a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 17 deletions

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
#![allow(dead_code)] #![allow(dead_code)]
// check dtor calling order when casting enums. // check dtor calling order when casting enums.

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
// This would previously leak the Box<Trait> because we wouldn't // This would previously leak the Box<Trait> because we wouldn't
// schedule cleanups when auto borrowing trait objects. // schedule cleanups when auto borrowing trait objects.
// This program should be valgrind clean. // This program should be valgrind clean.

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
fn main() { fn main() {
let _ = std::io::stdin(); let _ = std::io::stdin();
let _ = std::io::stdout(); let _ = std::io::stdout();

View file

@ -1,4 +1,3 @@
// no-prefer-dynamic
// ignore-emscripten // ignore-emscripten
thread_local!(static FOO: Foo = Foo); thread_local!(static FOO: Foo = Foo);

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
static mut DROP_RAN: bool = false; static mut DROP_RAN: bool = false;
struct Foo; struct Foo;

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
static mut DROP_RAN: isize = 0; static mut DROP_RAN: isize = 0;
struct Foo; struct Foo;

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
#![feature(unsized_tuple_coercion)] #![feature(unsized_tuple_coercion)]
static mut DROP_RAN: bool = false; static mut DROP_RAN: bool = false;

View file

@ -1,5 +1,3 @@
// no-prefer-dynamic
#![feature(unsized_tuple_coercion)] #![feature(unsized_tuple_coercion)]
static mut DROP_RAN: isize = 0; static mut DROP_RAN: isize = 0;

View file

@ -1,4 +1,3 @@
// no-prefer-dynamic
// ignore-cloudabi // ignore-cloudabi
// ignore-emscripten // ignore-emscripten
// ignore-sgx no processes // ignore-sgx no processes

View file

@ -1,4 +1,3 @@
// no-prefer-dynamic
// pretty-expanded FIXME #23616 // pretty-expanded FIXME #23616
#![feature(rustc_private)] #![feature(rustc_private)]