about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2015-06-03 18:34:45 -0700
committerEli Friedman <eli.friedman@gmail.com>2015-06-06 19:20:27 -0700
commita1d2eb8b1473cb7e013c0e75f79c484ee5428b60 (patch)
treee1a7c1ec524411afb5e0eeef61445770ad8f1a8b /src/test
parentfe107b360e7721515141839c9d2b01ba92a07244 (diff)
downloadrust-a1d2eb8b1473cb7e013c0e75f79c484ee5428b60.tar.gz
rust-a1d2eb8b1473cb7e013c0e75f79c484ee5428b60.zip
Clear cached landing pads before generating a call.
Using the wrong landing pad has obvious bad effects, like dropping a value
twice.

Testcase written by Alex Crichton.

Fixes #25089.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-25089.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-25089.rs b/src/test/run-pass/issue-25089.rs
new file mode 100644
index 00000000000..b619d1dd448
--- /dev/null
+++ b/src/test/run-pass/issue-25089.rs
@@ -0,0 +1,40 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+use std::thread;
+
+struct Foo(i32);
+
+impl Drop for Foo {
+    fn drop(&mut self) {
+        static mut DROPPED: bool = false;
+        unsafe {
+            assert!(!DROPPED);
+            DROPPED = true;
+        }
+    }
+}
+
+struct Empty;
+
+fn empty() -> Empty { Empty }
+
+fn should_panic(_: Foo, _: Empty) {
+    panic!("test panic");
+}
+
+fn test() {
+    should_panic(Foo(1), empty());
+}
+
+fn main() {
+    let ret = thread::spawn(test).join();
+    assert!(ret.is_err());
+}