summaryrefslogtreecommitdiff
path: root/test/parallel/test-stdout-close-unref.js
blob: 0b03e7142a861527c908f974d1e0532608770aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var assert = require('assert');
var common = require('../common');

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