Browse Source

Make test-child-process-exec-env work on windows

v0.7.4-release
Bert Belder 14 years ago
parent
commit
9e8d812ce9
  1. 7
      test/simple/test-child-process-exec-env.js

7
test/simple/test-child-process-exec-env.js

@ -25,6 +25,7 @@ var exec = require('child_process').exec;
var success_count = 0;
var error_count = 0;
var response = '';
var child;
function after(err, stdout, stderr) {
if (err) {
@ -39,7 +40,11 @@ function after(err, stdout, stderr) {
}
}
var child = exec('/usr/bin/env', { env: { 'HELLO': 'WORLD' } }, after);
if (process.platform !== 'win32') {
child = exec('/usr/bin/env', { env: { 'HELLO': 'WORLD' } }, after);
} else {
child = exec('set', { env: { 'HELLO': 'WORLD' } }, after);
}
child.stdout.setEncoding('utf8');
child.stdout.addListener('data', function(chunk) {

Loading…
Cancel
Save