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.
18 lines
269 B
18 lines
269 B
14 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var fs = require('fs');
|
||
|
|
||
|
var openFd;
|
||
|
fs.open(__filename, 'r', function(err, fd) {
|
||
|
if (err) {
|
||
|
throw err;
|
||
|
}
|
||
|
|
||
|
openFd = fd;
|
||
|
});
|
||
|
|
||
|
process.addListener('exit', function() {
|
||
|
assert.ok(openFd);
|
||
|
});
|
||
|
|