mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
546 B
24 lines
546 B
9 years ago
|
'use strict';
|
||
|
// Refs: https://github.com/nodejs/node/issues/7342
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const exec = require('child_process').exec;
|
||
|
|
||
9 years ago
|
var stdoutCalls = 0;
|
||
|
var stderrCalls = 0;
|
||
9 years ago
|
|
||
|
const command = common.isWindows ? 'dir' : 'ls';
|
||
9 years ago
|
exec(command).stdout.on('data', (data) => {
|
||
|
stdoutCalls += 1;
|
||
|
});
|
||
9 years ago
|
|
||
9 years ago
|
exec('fhqwhgads').stderr.on('data', (data) => {
|
||
|
assert.strictEqual(typeof data, 'string');
|
||
|
stderrCalls += 1;
|
||
|
});
|
||
9 years ago
|
|
||
9 years ago
|
process.on('exit', () => {
|
||
|
assert(stdoutCalls > 0);
|
||
|
assert(stderrCalls > 0);
|
||
|
});
|