mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 16:22:29 +00:00

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>
13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const constants = process.binding('constants');
|
|
|
|
if (common.isLinux) {
|
|
assert('O_NOATIME' in constants.fs);
|
|
assert.strictEqual(constants.fs.O_NOATIME, 0x40000);
|
|
} else {
|
|
assert(!('O_NOATIME' in constants.fs));
|
|
}
|