diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-28 13:56:48 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-28 17:56:15 -0800 |
| commit | b9089b5335231ac0f6528f2e67fcc344d666f355 (patch) | |
| tree | c2c8dfc2e1ed7480d8fc48dcf7613eea5f9f7543 /src/libstd | |
| parent | 9831ee3e670c081696b74b75f85f44131b00a1b1 (diff) | |
| download | rust-b9089b5335231ac0f6528f2e67fcc344d666f355.tar.gz rust-b9089b5335231ac0f6528f2e67fcc344d666f355.zip | |
std: Ignore uv tests on FreeBSD
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/uv.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/uv.rs b/src/libstd/uv.rs index 8022a7a38b7..875656d3a22 100644 --- a/src/libstd/uv.rs +++ b/src/libstd/uv.rs @@ -588,6 +588,7 @@ fn test_uv_new_loop_no_handles() { } #[test] +#[ignore(cfg(target_os = "freebsd"))] fn test_uv_simple_async() { let test_loop = uv::loop_new(); let exit_port = comm::port::<bool>(); @@ -606,6 +607,7 @@ fn test_uv_simple_async() { } #[test] +#[ignore(cfg(target_os = "freebsd"))] fn test_uv_timer() { let test_loop = uv::loop_new(); let exit_port = comm::port::<bool>(); |
