Skip to content

Commit

Permalink
test: add test for exec() known issue
Browse files Browse the repository at this point in the history
PR-URL: #7375
Refs: #7342
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
  • Loading branch information
Trott authored and Fishrock123 committed Jun 27, 2016
1 parent c4d3580 commit 044a0be
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/known_issues/test-child-process-exec-stdout-data-string.js
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit 044a0be

Please sign in to comment.