Merge pull request #7 from Wind-River/vxworks-V7LIBC-942
Skip socket timeout tests on VxWorks
This commit is contained in:
commit
76f17219c7
2 changed files with 4 additions and 2 deletions
|
|
@ -1597,7 +1597,8 @@ mod tests {
|
|||
|
||||
// FIXME: re-enabled openbsd tests once their socket timeout code
|
||||
// no longer has rounding errors.
|
||||
#[cfg_attr(any(target_os = "netbsd", target_os = "openbsd"), ignore)]
|
||||
// VxWorks ignores SO_SNDTIMEO.
|
||||
#[cfg_attr(any(target_os = "netbsd", target_os = "openbsd", target_os = "vxworks"), ignore)]
|
||||
#[cfg_attr(target_env = "sgx", ignore)] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
|
||||
#[test]
|
||||
fn timeouts() {
|
||||
|
|
|
|||
|
|
@ -1026,7 +1026,8 @@ mod tests {
|
|||
|
||||
// FIXME: re-enabled openbsd/netbsd tests once their socket timeout code
|
||||
// no longer has rounding errors.
|
||||
#[cfg_attr(any(target_os = "netbsd", target_os = "openbsd"), ignore)]
|
||||
// VxWorks ignores SO_SNDTIMEO.
|
||||
#[cfg_attr(any(target_os = "netbsd", target_os = "openbsd", target_os = "vxworks"), ignore)]
|
||||
#[test]
|
||||
fn timeouts() {
|
||||
let addr = next_test_ip4();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue