std: ignore tests that use high_level_loop

until race issue with (most likely) refcount scheme is sorted out
This commit is contained in:
Jeff Olson 2012-04-20 16:46:50 -07:00
parent 707391edbc
commit f855682bed
3 changed files with 5 additions and 2 deletions

View File

@ -140,11 +140,13 @@ crust fn delayed_send_close_cb(handle: *uv::ll::uv_timer_t) unsafe {
#[cfg(test)]
mod test {
#[test]
#[ignore]
fn test_timer_simple_sleep_test() {
sleep(1u);
}
#[test]
#[ignore]
fn test_timer_recv_timeout_before_time_passes() {
let expected = rand::rng().gen_str(16u);
let test_po = comm::port::<str>();
@ -163,6 +165,7 @@ mod test {
}
#[test]
#[ignore]
fn test_timer_recv_timeout_after_time_passes() {
let expected = rand::rng().gen_str(16u);
let fail_msg = rand::rng().gen_str(16u);

View File

@ -365,7 +365,7 @@ mod test {
log(debug, "global_loop timer test: msg recv on exit_po, done..");
}
#[test]
#[ignore(cfg(target_os = "freebsd"))]
#[ignore]
fn test_uv_global_loop_high_level_global_timer() unsafe {
let hl_loop = get_gl();
task::spawn_sched(task::manual_threads(1u), {||

View File

@ -473,7 +473,7 @@ mod test {
}
#[test]
#[ignore(cfg(target_os = "freebsd"))]
#[ignore]
fn test_uv_hl_async() unsafe {
let exit_po = comm::port::<()>();
let exit_ch = comm::chan(exit_po);