mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

In the tests, we use "process.platform === 'win32'" in some places. This patch replaces them with the "common.isWindows" for consistency. PR-URL: https://github.com/nodejs/io.js/pull/2269 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
22 lines
556 B
JavaScript
22 lines
556 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
// Note in Windows one can only set the "user" bits.
|
|
var mask;
|
|
if (common.isWindows) {
|
|
mask = '0600';
|
|
} else {
|
|
mask = '0664';
|
|
}
|
|
|
|
var old = process.umask(mask);
|
|
|
|
assert.equal(parseInt(mask, 8), process.umask(old));
|
|
|
|
// confirm reading the umask does not modify it.
|
|
// 1. If the test fails, this call will succeed, but the mask will be set to 0
|
|
assert.equal(old, process.umask());
|
|
// 2. If the test fails, process.umask() will return 0
|
|
assert.equal(old, process.umask());
|