]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/extern-fail.rs
a281e9863649eb4455ea30c7496262dab4d02753
[rust.git] / src / test / run-fail / extern-fail.rs
1 // Copyright 2012 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 // error-pattern:explicit failure
12 // Testing that runtime failure doesn't cause callbacks to abort abnormally.
13 // Instead the failure will be delivered after the callbacks return.
14
15 use std::libc;
16 use std::task;
17
18 mod rustrt {
19     use std::libc;
20
21     extern {
22         pub fn rust_dbg_call(cb: *u8, data: libc::uintptr_t)
23                              -> libc::uintptr_t;
24     }
25 }
26
27 extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
28     if data == 1u {
29         data
30     } else {
31         count(data - 1u) + count(data - 1u)
32     }
33 }
34
35 fn count(n: uint) -> uint {
36     unsafe {
37         task::yield();
38         rustrt::rust_dbg_call(cb, n)
39     }
40 }
41
42 fn main() {
43     do 10u.times {
44         do task::spawn {
45             let result = count(5u);
46             info!("result = %?", result);
47             fail!();
48         };
49     }
50 }