Skip to content

Commit 59a57d2

Browse files
committed
Fix timestamp ignore tests
1 parent 2b821f3 commit 59a57d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sys/test_socket.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ pub fn test_vsock() {
15381538

15391539
// Disable the test on emulated platforms because it fails in Cirrus-CI. Lack of QEMU
15401540
// support is suspected.
1541-
#[cfg_attr(all(not(any(target_arch = "x86_64")), any(target_env = "musl")), ignore)]
1541+
#[cfg_attr(any(not(any(target_arch = "x86_64")), any(target_env = "musl")), ignore)]
15421542
#[cfg(all(target_os = "linux", any(
15431543
target_arch = "x86",
15441544
target_arch = "x86_64",
@@ -1593,7 +1593,7 @@ fn test_recvmsg_timestampns() {
15931593

15941594
// Disable the test on emulated platforms because it fails in Cirrus-CI. Lack of QEMU
15951595
// support is suspected.
1596-
#[cfg_attr(all(not(any(target_arch = "x86_64")), any(target_env = "musl")), ignore)]
1596+
#[cfg_attr(any(not(any(target_arch = "x86_64")), any(target_env = "musl")), ignore)]
15971597
#[cfg(all(target_os = "linux", any(
15981598
target_arch = "x86",
15991599
target_arch = "x86_64",

0 commit comments

Comments
 (0)