1
Fork 0

Fix test that was using rust_task_allow_kill incorrectly

This commit is contained in:
Brian Anderson 2012-07-05 21:33:11 -07:00
parent d162fa26ba
commit 9b2d988df0

View file

@ -1,5 +1,7 @@
/* /*
A reduced test case for Issue #506, provided by Rob Arnold. A reduced test case for Issue #506, provided by Rob Arnold.
Testing spawning foreign functions
*/ */
use std; use std;
@ -7,7 +9,7 @@ import task;
#[abi = "cdecl"] #[abi = "cdecl"]
extern mod rustrt { extern mod rustrt {
fn rust_task_allow_kill(); fn unsupervise();
} }
fn main() { task::spawn(rustrt::rust_task_allow_kill); } fn main() { task::spawn(rustrt::unsupervise); }