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.
23 lines
546 B
23 lines
546 B
'use strict';
|
|
// Refs: https://github.com/nodejs/node/issues/7342
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const exec = require('child_process').exec;
|
|
|
|
var stdoutCalls = 0;
|
|
var stderrCalls = 0;
|
|
|
|
const command = common.isWindows ? 'dir' : 'ls';
|
|
exec(command).stdout.on('data', (data) => {
|
|
stdoutCalls += 1;
|
|
});
|
|
|
|
exec('fhqwhgads').stderr.on('data', (data) => {
|
|
assert.strictEqual(typeof data, 'string');
|
|
stderrCalls += 1;
|
|
});
|
|
|
|
process.on('exit', () => {
|
|
assert(stdoutCalls > 0);
|
|
assert(stderrCalls > 0);
|
|
});
|
|
|