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
319 B

'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);
});