test: add test for exec() known issue

PR-URL: https://github.com/nodejs/node/pull/7375
Refs: https://github.com/nodejs/node/issues/7342
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
pull/7415/head
Rich Trott 2016-06-22 16:21:21 -07:00
parent 0b9e135c3e
commit c96457403e
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
'use strict';
// Refs: https://github.com/nodejs/node/issues/7342
const common = require('../common');
const assert = require('assert');
const exec = require('child_process').exec;
const expectedCalls = 2;
const cb = common.mustCall((data) => {
assert.strictEqual(typeof data, 'string');
}, expectedCalls);
const command = common.isWindows ? 'dir' : 'ls';
exec(command).stdout.on('data', cb);
exec('fhqwhgads').stderr.on('data', cb);