Skip to content

Commit f9ed9f0

Browse files
authored
Disables sys::test_uio::test_writev for Solaris (#2554)
1 parent 0f45593 commit f9ed9f0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/sys/test_uio.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ use tempfile::tempdir;
1414
use tempfile::tempfile;
1515

1616
#[test]
17+
// On Solaris sometimes wrtitev() returns EINVAL.
18+
#[cfg(not(target_os = "solaris"))]
1719
fn test_writev() {
1820
let mut to_write = Vec::with_capacity(16 * 128);
1921
for _ in 0..16 {

0 commit comments

Comments
 (0)