mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 09:08:46 +00:00

This change is in preparation for lint-enforced brace style. PR-URL: https://github.com/nodejs/node/pull/7630 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
38 lines
677 B
JavaScript
38 lines
677 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var fs = require('fs');
|
|
|
|
var caughtException = false;
|
|
try {
|
|
// should throw ENOENT, not EBADF
|
|
// see https://github.com/joyent/node/pull/1228
|
|
fs.openSync('/path/to/file/that/does/not/exist', 'r');
|
|
} catch (e) {
|
|
assert.equal(e.code, 'ENOENT');
|
|
caughtException = true;
|
|
}
|
|
assert.ok(caughtException);
|
|
|
|
var openFd;
|
|
fs.open(__filename, 'r', function(err, fd) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
openFd = fd;
|
|
});
|
|
|
|
var openFd2;
|
|
fs.open(__filename, 'rs', function(err, fd) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
openFd2 = fd;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(openFd);
|
|
assert.ok(openFd2);
|
|
});
|
|
|