summaryrefslogtreecommitdiffstats
path: root/src/test/run-pass-valgrind/down-with-thread-dtors.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/run-pass-valgrind/down-with-thread-dtors.rs
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/run-pass-valgrind/down-with-thread-dtors.rs')
-rw-r--r--src/test/run-pass-valgrind/down-with-thread-dtors.rs39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/run-pass-valgrind/down-with-thread-dtors.rs b/src/test/run-pass-valgrind/down-with-thread-dtors.rs
deleted file mode 100644
index 8531b8d83..000000000
--- a/src/test/run-pass-valgrind/down-with-thread-dtors.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-// ignore-emscripten
-
-thread_local!(static FOO: Foo = Foo);
-thread_local!(static BAR: Bar = Bar(1));
-thread_local!(static BAZ: Baz = Baz);
-
-static mut HIT: bool = false;
-
-struct Foo;
-struct Bar(i32);
-struct Baz;
-
-impl Drop for Foo {
- fn drop(&mut self) {
- BAR.with(|_| {});
- }
-}
-
-impl Drop for Bar {
- fn drop(&mut self) {
- assert_eq!(self.0, 1);
- self.0 = 2;
- BAZ.with(|_| {});
- assert_eq!(self.0, 2);
- }
-}
-
-impl Drop for Baz {
- fn drop(&mut self) {
- unsafe { HIT = true; }
- }
-}
-
-fn main() {
- std::thread::spawn(|| {
- FOO.with(|_| {});
- }).join().unwrap();
- assert!(unsafe { HIT });
-}