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: c22a097925b456d127f362cee099654db8cc3f97 (plain)
1
2
3
4
5
6
7
8
9
10
var common = 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.');