2018-08-30 12:18:55 +00:00
|
|
|
//@ run-pass
|
2017-10-18 01:45:42 +00:00
|
|
|
//@ ignore-emscripten no threads
|
2016-08-24 03:36:37 +00:00
|
|
|
//@ compile-flags: -O
|
2016-08-02 00:45:01 +00:00
|
|
|
|
2016-02-20 22:47:51 +00:00
|
|
|
// Tests that the `vec!` macro does not overflow the stack when it is
|
|
|
|
// given data larger than the stack.
|
|
|
|
|
2016-08-24 03:36:37 +00:00
|
|
|
// FIXME(eddyb) Improve unoptimized codegen to avoid the temporary,
|
|
|
|
// and thus run successfully even when compiled at -C opt-level=0.
|
|
|
|
|
2016-02-20 22:47:51 +00:00
|
|
|
const LEN: usize = 1 << 15;
|
|
|
|
|
|
|
|
use std::thread::Builder;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert!(Builder::new().stack_size(LEN / 2).spawn(|| {
|
2016-08-24 03:36:37 +00:00
|
|
|
// FIXME(eddyb) this can be vec![[0: LEN]] pending
|
|
|
|
// https://llvm.org/bugs/show_bug.cgi?id=28987
|
|
|
|
let vec = vec![unsafe { std::mem::zeroed::<[u8; LEN]>() }];
|
2016-02-20 22:47:51 +00:00
|
|
|
assert_eq!(vec.len(), 1);
|
|
|
|
}).unwrap().join().is_ok());
|
|
|
|
}
|