Browse Source

test: merge environment, don't overwrite

The CI system requires that some environment variables are set so merge
our variables into the current environment instead of blindly replacing
it.

This will probably have to be repeated for other tests. C'est la vie.
v0.9.11-release
Ben Noordhuis 12 years ago
parent
commit
e505f91266
  1. 3
      test/simple/test-http-server-stale-close.js

3
test/simple/test-http-server-stale-close.js

@ -22,6 +22,7 @@
var common = require('../common'); var common = require('../common');
var assert = require('assert'); var assert = require('assert');
var http = require('http'); var http = require('http');
var util = require('util');
var fork = require('child_process').fork; var fork = require('child_process').fork;
if (process.env.NODE_TEST_FORK) { if (process.env.NODE_TEST_FORK) {
@ -45,7 +46,7 @@ else {
}); });
server.listen(common.PORT, function() { server.listen(common.PORT, function() {
fork(__filename, { fork(__filename, {
env: {NODE_TEST_FORK: '1'} env: util._extend(process.env, {NODE_TEST_FORK: '1'})
}); });
}); });
} }

Loading…
Cancel
Save