core: Ignore two long-running tests

This commit is contained in:
Brian Anderson 2013-04-20 16:15:06 -07:00
parent d818ea8154
commit 00474c13f3

View file

@ -598,12 +598,14 @@ mod tests {
#[test]
#[cfg(unix)]
#[ignore(reason = "long run time")]
fn test_unforced_destroy_actually_kills() {
test_destroy_actually_kills(false);
}
#[test]
#[cfg(unix)]
#[ignore(reason = "long run time")]
fn test_forced_destroy_actually_kills() {
test_destroy_actually_kills(true);
}