Skip to content

Commit 95560c1

Browse files
committed
test: Mark all rpass-valgrind as no-prefer-dynamic
This applies the same fix as added in 595d5b2 which is to just compile all valgrind tests statically instead of dynamically. It looks like this is a resurgence of either #30383 or #31328 in some weird fashion. I'm not actually sure what's going on with the bots, and it's unclear whether this is a valgrind bug or a libstd bug, but for now let's just get things landing again. Closes #30383
1 parent b643782 commit 95560c1

7 files changed

+11
-0
lines changed

src/test/run-pass-valgrind/cast-enum-with-dtor.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
12+
1113
#![allow(dead_code)]
1214
#![feature(const_fn)]
1315

src/test/run-pass-valgrind/cleanup-auto-borrow-obj.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
1112

1213
// This would previously leak the Box<Trait> because we wouldn't
1314
// schedule cleanups when auto borrowing trait objects.

src/test/run-pass-valgrind/cleanup-stdin.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
12+
1113
fn main() {
1214
let _ = std::io::stdin();
1315
let _ = std::io::stdout();

src/test/run-pass-valgrind/dst-dtor-1.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
12+
1113
static mut DROP_RAN: bool = false;
1214

1315
struct Foo;

src/test/run-pass-valgrind/dst-dtor-2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
12+
1113
static mut DROP_RAN: isize = 0;
1214

1315
struct Foo;

src/test/run-pass-valgrind/exit-flushes.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
1112
// ignore-macos this needs valgrind 3.11 or higher; see
1213
// https://github.com/rust-lang/rust/pull/30365#issuecomment-165763679
1314

src/test/run-pass-valgrind/osx-frameworks.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
1112
// pretty-expanded FIXME #23616
1213

1314
#![feature(libc)]

0 commit comments

Comments
 (0)