mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
test: make stdout-close-unref work in test runner
process.stdout isn't fully initialized yet by the time the test starts when invoked with `python tools/test.py`. Use process.stdin instead and force initialization with process.stdin.resume().
This commit is contained in:
@@ -19,5 +19,6 @@
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
process.stdout._handle.close();
|
||||
process.stdout._handle.unref(); // Should not segfault.
|
||||
process.stdin.resume();
|
||||
process.stdin._handle.close();
|
||||
process.stdin._handle.unref(); // Should not segfault.
|
||||
|
||||
Reference in New Issue
Block a user