Skip to content

Commit 06bb4af

Browse files
committed
pulled in changes from Node 0.11.10
1 parent 01bb143 commit 06bb4af

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

test/common.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ exports.PORT = +process.env.NODE_COMMON_PORT || 12346;
3030

3131
if (process.platform === 'win32') {
3232
exports.PIPE = '\\\\.\\pipe\\libuv-test';
33+
exports.opensslCli = path.join(process.execPath, '..', 'openssl-cli.exe');
3334
} else {
3435
exports.PIPE = exports.tmpDir + '/test.sock';
36+
exports.opensslCli = path.join(process.execPath, '..', 'openssl-cli');
3537
}
3638

3739
var util = require('util');
@@ -97,6 +99,7 @@ process.on('exit', function() {
9799
clearInterval,
98100
typeof clearImmediate == 'undefined' ? null : clearImmediate,
99101
console,
102+
constructor, // Enumerable in V8 3.21.
100103
Buffer,
101104
process,
102105
global].filter(Boolean);

0 commit comments

Comments
 (0)