diff options
author | Sakthipriyan Vairamani (thefourtheye) <thechargingvolcano@gmail.com> | 2017-04-27 07:36:49 +0530 |
---|---|---|
committer | Gibson Fahnestock <gibfahn@gmail.com> | 2017-04-28 17:22:45 +0100 |
commit | b16869c4e42d0861ba0890aaeef02e25daf46b11 (patch) | |
tree | 9591bc242baba8ac20c1ebe9989578e7c113e0b7 /test/parallel/test-fs-options-immutable.js | |
parent | 71f22c842bc3f9e04ebf110461c42b07a304f352 (diff) | |
download | node-new-b16869c4e42d0861ba0890aaeef02e25daf46b11.tar.gz |
test: remove AIX guard in fs-options-immutable
The fs watch test was not run on AIX till now because of the known
issue, https://github.com/nodejs/node/issues/5085. Now that it is
completed, this guard can be removed.
PR-URL: https://github.com/nodejs/node/pull/12687
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
Diffstat (limited to 'test/parallel/test-fs-options-immutable.js')
-rw-r--r-- | test/parallel/test-fs-options-immutable.js | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/test/parallel/test-fs-options-immutable.js b/test/parallel/test-fs-options-immutable.js index 5f43a334f8..8993aebe0c 100644 --- a/test/parallel/test-fs-options-immutable.js +++ b/test/parallel/test-fs-options-immutable.js @@ -58,21 +58,17 @@ if (common.canCreateSymLink()) { ); } -if (!common.isAix) { - // TODO(thefourtheye) Remove this guard once - // https://github.com/nodejs/node/issues/5085 is fixed - { - let watch; - assert.doesNotThrow(() => { - watch = fs.watch(__filename, options, common.noop); - }); - watch.close(); - } +{ + let watch; + assert.doesNotThrow(() => { + watch = fs.watch(__filename, options, common.noop); + }); + watch.close(); +} - { - assert.doesNotThrow(() => fs.watchFile(__filename, options, common.noop)); - fs.unwatchFile(__filename); - } +{ + assert.doesNotThrow(() => fs.watchFile(__filename, options, common.noop)); + fs.unwatchFile(__filename); } { |