2011-12-05 21:21:46 -06:00
|
|
|
// xfail-test
|
|
|
|
// error-pattern:explicit failure
|
|
|
|
// compile-flags:--stack-growth
|
|
|
|
|
|
|
|
// Just testing unwinding
|
|
|
|
|
|
|
|
use std;
|
|
|
|
|
|
|
|
native mod rustrt {
|
|
|
|
fn set_min_stack(size: uint);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn getbig_and_fail(&&i: int) {
|
|
|
|
let r = and_then_get_big_again(@0);
|
|
|
|
if i != 0 {
|
|
|
|
getbig_and_fail(i - 1);
|
|
|
|
} else {
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource and_then_get_big_again(_i: @int) {
|
|
|
|
fn getbig(i: int) {
|
|
|
|
if i != 0 {
|
|
|
|
getbig(i - 1);
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 18:26:47 -06:00
|
|
|
getbig(100);
|
2011-12-05 21:21:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2011-12-11 19:50:12 -06:00
|
|
|
rustrt::set_min_stack(1024u);
|
|
|
|
std::task::spawn(400, getbig_and_fail);
|
2011-12-05 21:21:46 -06:00
|
|
|
}
|