2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-12-23 16:02:12 -08:00
|
|
|
require('../common');
|
2012-02-21 15:26:35 -08:00
|
|
|
|
|
|
|
// 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.');
|