blob: 08a34a05f2573402999ac408ce11df681fda9b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
'use strict';
var common = require('../common');
var assert = require('assert');
var spawn = require('child_process').spawn;
var fs = require('fs');
if (common.isWindows) {
console.log('1..0 # Skipped: no RLIMIT_NOFILE on Windows');
return;
}
for (;;) {
try {
fs.openSync(__filename, 'r');
} catch (err) {
assert(err.code === 'EMFILE' || err.code === 'ENFILE');
break;
}
}
// Should emit an error, not throw.
var proc = spawn(process.execPath, ['-e', '0']);
proc.on('error', common.mustCall(function(err) {
assert(err.code === 'EMFILE' || err.code === 'ENFILE');
}));
// 'exit' should not be emitted, the process was never spawned.
proc.on('exit', assert.fail);
|