Browse Source

test: make test-process-argv-0 robust

Remove use of STDERR to avoid test flakiness on CentOS 5.

Use parent process exit event for assertion rather than child exit
event.

PR-URL: https://github.com/nodejs/node/pull/2541
Fixes: https://github.com/nodejs/node/issues/2477
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
v4.0.0-rc
Rich Trott 10 years ago
parent
commit
972a57cb20
  1. 12
      test/parallel/test-process-argv-0.js

12
test/parallel/test-process-argv-0.js

@ -1,12 +1,7 @@
'use strict';
var util = require('util');
var path = require('path');
var assert = require('assert');
var spawn = require('child_process').spawn;
var common = require('../common');
console.error('argv=%j', process.argv);
console.error('exec=%j', process.execPath);
if (process.argv[2] !== 'child') {
var child = spawn(process.execPath, [__filename, 'child'], {
@ -14,15 +9,10 @@ if (process.argv[2] !== 'child') {
});
var childArgv0 = '';
var childErr = '';
child.stdout.on('data', function(chunk) {
childArgv0 += chunk;
});
child.stderr.on('data', function(chunk) {
childErr += chunk;
});
child.on('exit', function() {
console.error('CHILD: %s', childErr.trim().split('\n').join('\nCHILD: '));
process.on('exit', function() {
assert.equal(childArgv0, process.execPath);
});
}

Loading…
Cancel
Save