Fix test that was using rust_task_allow_kill incorrectly
This commit is contained in:
parent
d162fa26ba
commit
9b2d988df0
@ -1,5 +1,7 @@
|
||||
/*
|
||||
A reduced test case for Issue #506, provided by Rob Arnold.
|
||||
|
||||
Testing spawning foreign functions
|
||||
*/
|
||||
|
||||
use std;
|
||||
@ -7,7 +9,7 @@
|
||||
|
||||
#[abi = "cdecl"]
|
||||
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); }
|
||||
|
Loading…
Reference in New Issue
Block a user