]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/box-of-array-of-drop-2.rs
ca17942917281329f9fa745760e845f3749a3f3a
[rust.git] / src / test / run-pass / box-of-array-of-drop-2.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that we cleanup dynamic sized Box<[D]> properly when D has a
12 // destructor.
13
14 // ignore-emscripten no threads support
15
16 #![feature(const_fn)]
17
18 use std::thread;
19 use std::sync::atomic::{AtomicUsize, Ordering};
20
21 static LOG: AtomicUsize = AtomicUsize::new(0);
22
23 struct D(u8);
24
25 impl Drop for D {
26     fn drop(&mut self) {
27         println!("Dropping {}", self.0);
28         let old = LOG.load(Ordering::SeqCst);
29         LOG.compare_and_swap(old, old << 4 | self.0 as usize, Ordering::SeqCst);
30     }
31 }
32
33 fn main() {
34     fn die() -> D { panic!("Oh no"); }
35     let g = thread::spawn(|| {
36         let _b1: Box<[D; 4]> = Box::new([D( 1), D( 2), D( 3), D( 4)]);
37         let _b2: Box<[D; 4]> = Box::new([D( 5), D( 6), D( 7), D( 8)]);
38         let _b3: Box<[D; 4]> = Box::new([D( 9), D(10), die(), D(12)]);
39         let _b4: Box<[D; 4]> = Box::new([D(13), D(14), D(15), D(16)]);
40     });
41     assert!(g.join().is_err());
42
43     // When the panic occurs, we will be in the midst of constructing
44     // the input to `_b3`.  Therefore, we drop the elements of the
45     // partially filled array first, before we get around to dropping
46     // the elements of `_b1` and _b2`.
47
48     // Issue 23222: The order in which the elements actually get
49     // dropped is a little funky. See similar notes in nested-vec-3;
50     // in essence, I would not be surprised if we change the ordering
51     // given in `expect` in the future.
52
53     let expect = 0x__A_9__5_6_7_8__1_2_3_4;
54     let actual = LOG.load(Ordering::SeqCst);
55     assert!(actual == expect, "expect: 0x{:x} actual: 0x{:x}", expect, actual);
56 }