mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
|
||
|
const constants = require('constants');
|
||
|
const assert = require('assert');
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
|
||
|
common.refreshTmpDir();
|
||
|
|
||
|
// O_WRONLY without O_CREAT shall fail with ENOENT
|
||
|
const pathNE = path.join(common.tmpDir, 'file-should-not-exist');
|
||
|
assert.throws(
|
||
|
() => fs.openSync(pathNE, constants.O_WRONLY),
|
||
|
(e) => e.code === 'ENOENT'
|
||
|
);
|