summaryrefslogtreecommitdiff
path: root/test/parallel/test-cwd-enoent-repl.js
diff options
context:
space:
mode:
authorSantiago Gimeno <santiago.gimeno@gmail.com>2016-05-29 17:53:40 +0200
committerSantiago Gimeno <santiago.gimeno@gmail.com>2016-07-27 08:25:26 +0200
commitdee0e3a3336473973eda3a8e0e334e96f587572a (patch)
tree41332997e0022ebb5a29280dbd0bdd13a7d66ecb /test/parallel/test-cwd-enoent-repl.js
parente22ffefff221caee264ab0b88691478a03ab1862 (diff)
downloadandroid-node-v8-dee0e3a3336473973eda3a8e0e334e96f587572a.tar.gz
android-node-v8-dee0e3a3336473973eda3a8e0e334e96f587572a.tar.bz2
android-node-v8-dee0e3a3336473973eda3a8e0e334e96f587572a.zip
test: use common platform helpers everywhere
Use the common.isWindows, common.isFreeBSD and common.isSunOS where possible. Add common.isOSX and common.isLinux. Fix `test-fs-read-file-sync-hostname` as in its current form was not being run anywhere. PR-URL: https://github.com/nodejs/node/pull/7845 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-cwd-enoent-repl.js')
-rw-r--r--test/parallel/test-cwd-enoent-repl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-cwd-enoent-repl.js b/test/parallel/test-cwd-enoent-repl.js
index 3c8b543cf1..2782ec4394 100644
--- a/test/parallel/test-cwd-enoent-repl.js
+++ b/test/parallel/test-cwd-enoent-repl.js
@@ -5,7 +5,7 @@ var fs = require('fs');
var spawn = require('child_process').spawn;
// Fails with EINVAL on SmartOS, EBUSY on Windows, EBUSY on AIX.
-if (process.platform === 'sunos' || common.isWindows || common.isAix) {
+if (common.isSunOS || common.isWindows || common.isAix) {
common.skip('cannot rmdir current working directory');
return;
}