summaryrefslogtreecommitdiff
path: root/test/test_unistd.rs
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2020-06-05 21:47:40 -0600
committerAlan Somers <asomers@gmail.com>2020-06-05 21:47:40 -0600
commitd080785d4be8831ed43432b9cdeb644e6d47d936 (patch)
tree71788de953a272d9e25eafeb2181254bcf0b40cb /test/test_unistd.rs
parentf698fd3807cae9a2c55d4f7aca3ac4791750713e (diff)
downloadnix-d080785d4be8831ed43432b9cdeb644e6d47d936.zip
Respond to review comments
Diffstat (limited to 'test/test_unistd.rs')
-rw-r--r--test/test_unistd.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_unistd.rs b/test/test_unistd.rs
index 642f31cd..90c797f0 100644
--- a/test/test_unistd.rs
+++ b/test/test_unistd.rs
@@ -566,9 +566,9 @@ fn test_pipe() {
target_os = "emscripten",
target_os = "freebsd",
target_os = "linux",
- target_os = "redox",
target_os = "netbsd",
- target_os = "openbsd"))]
+ target_os = "openbsd",
+ target_os = "redox"))]
#[test]
fn test_pipe2() {
let (fd0, fd1) = pipe2(OFlag::O_CLOEXEC).unwrap();