2012-02-13 23:18:21 -08:00
|
|
|
// This time we're testing repeatedly going up and down both stacks to
|
|
|
|
// make sure the stack pointers are maintained properly in both
|
|
|
|
// directions
|
|
|
|
|
2012-07-03 16:11:00 -07:00
|
|
|
extern mod rustrt {
|
2012-02-13 23:18:21 -08:00
|
|
|
fn rust_dbg_call(cb: *u8,
|
2012-03-12 20:04:27 -07:00
|
|
|
data: libc::uintptr_t) -> libc::uintptr_t;
|
2012-02-13 23:18:21 -08:00
|
|
|
}
|
|
|
|
|
2012-07-03 16:32:02 -07:00
|
|
|
extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
|
2012-02-13 23:18:21 -08:00
|
|
|
if data == 1u {
|
|
|
|
data
|
|
|
|
} else {
|
|
|
|
count(data - 1u) + count(data - 1u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn count(n: uint) -> uint {
|
2012-07-30 16:01:07 -07:00
|
|
|
debug!{"n = %?", n};
|
2012-02-13 23:18:21 -08:00
|
|
|
rustrt::rust_dbg_call(cb, n)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Make sure we're on a task with small Rust stacks (main currently
|
|
|
|
// has a large stack)
|
2012-07-04 15:04:28 -04:00
|
|
|
do task::spawn {
|
2012-02-13 23:18:21 -08:00
|
|
|
let result = count(12u);
|
2012-07-30 16:01:07 -07:00
|
|
|
debug!{"result = %?", result};
|
2012-02-13 23:18:21 -08:00
|
|
|
assert result == 2048u;
|
|
|
|
};
|
|
|
|
}
|