Browse Source

escape backslashes for windows pipe name

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
a6a3bf6d47
  1. 2
      test/common.js

2
test/common.js

@ -29,7 +29,7 @@ exports.tmpDir = path.join(exports.testDir, 'tmp');
exports.PORT = 12346;
if (process.platform == 'win32') {
exports.PIPE = '\\.\pipe\libuv-test';
exports.PIPE = '\\\\.\\pipe\\libuv-test';
} else {
exports.PIPE = exports.tmpDir + '/test.sock';
}

Loading…
Cancel
Save