summaryrefslogtreecommitdiff
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
parentf698fd3807cae9a2c55d4f7aca3ac4791750713e (diff)
downloadnix-d080785d4be8831ed43432b9cdeb644e6d47d936.zip
Respond to review comments
-rw-r--r--CHANGELOG.md12
-rw-r--r--test/test_unistd.rs4
2 files changed, 10 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa83f9d8..efa9c2c3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -69,10 +69,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
optional arguments.
(#[1242](https://github.com/nix-rust/nix/pull/1242))
-- Removed `unistd::daemon`, `unistd::pipe2`,
- `sys::event::FilterFlag::NOTE_EXIT_REPARENTED`, and
- `sys::event::FilterFlag::NOTE_REAP` on OSX and ios. Removed
- `sys::ptrace::ptrace` on Android and Linux.
+- Removed `unistd::daemon` and `unistd::pipe2` on OSX and ios
+ (#[1255](https://github.com/nix-rust/nix/pull/1255))
+
+- Removed `sys::event::FilterFlag::NOTE_EXIT_REPARENTED` and
+ `sys::event::FilterFlag::NOTE_REAP` on OSX and ios.
+ (#[1255](https://github.com/nix-rust/nix/pull/1255))
+
+- Removed `sys::ptrace::ptrace` on Android and Linux.
(#[1255](https://github.com/nix-rust/nix/pull/1255))
## [0.17.0] - 3 February 2020
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();