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