Browse Source

test: Remove references to customFds

Option has been deprecated since v0.5.11

Signed-off-by: Fedor Indutny <fedor@indutny.com>
archived-io.js-v0.10
Ryan Graham 11 years ago
committed by Fedor Indutny
parent
commit
a7b14f7a89
  1. 0
      test/disabled/test-child-process-customfd-bounded.js
  2. 2
      test/simple/test-child-process-set-blocking.js
  3. 2
      test/simple/test-regress-GH-1726.js

0
test/simple/test-child-process-customfd-bounded.js → test/disabled/test-child-process-customfd-bounded.js

2
test/simple/test-child-process-set-blocking.js

@ -27,7 +27,7 @@ var SIZE = 100000;
var childGone = false; var childGone = false;
var cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], { var cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], {
customFds: [0, 1, 2] stdio: 'inherit'
}); });
cp.on('exit', function(code) { cp.on('exit', function(code) {

2
test/simple/test-regress-GH-1726.js

@ -38,7 +38,7 @@ if (gen === maxGen) {
} }
var child = ch.spawn(process.execPath, [__filename, gen + 1], { var child = ch.spawn(process.execPath, [__filename, gen + 1], {
customFds: [0, -1, 2] stdio: 'inherit'
}); });
assert.ok(!child.stdin); assert.ok(!child.stdin);
assert.ok(child.stdout); assert.ok(child.stdout);

Loading…
Cancel
Save