2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-09-27 15:31:36 -07:00
|
|
|
require('../common');
|
2012-06-16 09:05:28 -07:00
|
|
|
console.error('before opening stdin');
|
|
|
|
process.stdin.resume();
|
|
|
|
console.error('stdin opened');
|
|
|
|
console.error('pausing stdin');
|
|
|
|
process.stdin.pause();
|
|
|
|
console.error('opening again');
|
|
|
|
process.stdin.resume();
|
|
|
|
console.error('pausing again');
|
|
|
|
process.stdin.pause();
|
|
|
|
console.error('should exit now');
|