Skip to content

Commit

Permalink
test_tcp_congestion comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nobody committed Dec 6, 2018
1 parent 9510c56 commit 22cb17d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/sys/test_sockopt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ fn test_so_buf() {
assert!(actual >= bufsize);
}

// The CI doesn't supported getsockopt and setsockopt on emulated processors
// The CI doesn't supported getsockopt and setsockopt on emulated processors.
// It's beleived that a QEMU issue, the tests run ok on a fully emulated system.
// Current CI just run the binary with QEMU but the Kernel remains the same as the host.
// So the syscall doesn't work properly unless the kernel is also emulated.
#[test]
#[cfg(all(
any(target_arch = "x86", target_arch = "x86_64"),
Expand Down

0 comments on commit 22cb17d

Please sign in to comment.