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.
16 lines
318 B
16 lines
318 B
11 years ago
|
var assert = require('assert');
|
||
|
var common = require('../common');
|
||
|
|
||
|
var errs = 0;
|
||
|
|
||
12 years ago
|
process.stdin.resume();
|
||
|
process.stdin._handle.close();
|
||
|
process.stdin._handle.unref(); // Should not segfault.
|
||
11 years ago
|
process.stdin.on('error', function(err) {
|
||
|
errs++;
|
||
|
});
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert.strictEqual(errs, 1);
|
||
|
});
|