mirror of https://github.com/nodejs/node.git
17 lines
319 B
JavaScript
17 lines
319 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var errs = 0;
|
|
|
|
process.stdin.resume();
|
|
process.stdin._handle.close();
|
|
process.stdin._handle.unref(); // Should not segfault.
|
|
process.stdin.on('error', function(err) {
|
|
errs++;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(errs, 1);
|
|
});
|