Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-stdin-hang.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb43d52506e5dcc20a835d005a83cf2c4401bda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';
require('../common');

// This test *only* verifies that invoking the stdin getter does not
// cause node to hang indefinitely.
// If it does, then the test-runner will nuke it.

// invoke the getter.
process.stdin;

console.error('Should exit normally now.');