]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/out-of-stack-no-split.rs
rollup merge of #18259 : alexcrichton/snapshots
[rust.git] / src / test / run-pass / out-of-stack-no-split.rs
1 // Copyright 2012-2014 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 //ignore-android
12 //ignore-linux
13 //ignore-freebsd
14 //ignore-ios
15 //ignore-dragonfly
16
17 #![feature(asm)]
18
19 use std::io::process::Command;
20 use std::os;
21
22 // lifted from the test module
23 // Inlining to avoid llvm turning the recursive functions into tail calls,
24 // which doesn't consume stack.
25 #[inline(always)]
26 #[no_stack_check]
27 pub fn black_box<T>(dummy: T) { unsafe { asm!("" : : "r"(&dummy)) } }
28
29 #[no_stack_check]
30 fn recurse() {
31     let buf = [0i, ..10];
32     black_box(buf);
33     recurse();
34 }
35
36 fn main() {
37     let args = os::args();
38     let args = args.as_slice();
39     if args.len() > 1 && args[1].as_slice() == "recurse" {
40         recurse();
41     } else {
42         let recurse = Command::new(args[0].as_slice()).arg("recurse").output().unwrap();
43         assert!(!recurse.status.success());
44         let error = String::from_utf8_lossy(recurse.error.as_slice());
45         assert!(error.as_slice().contains("has overflowed its stack"));
46     }
47 }