mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9577946bed
PR-URL: https://github.com/nodejs/node/pull/23051 Fixes: https://github.com/nodejs/node/issues/22814 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: George Adams <george.adams@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
// This tests verifies that process.stdin.end() does not
|
|
// crash the process with ENOTCONN
|
|
|
|
process.stdin.end();
|