From a6a3bf6d470dbc2cd167c9d7788181793d0dc8a0 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 21 Jul 2011 14:19:24 -0700 Subject: [PATCH] escape backslashes for windows pipe name --- test/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common.js b/test/common.js index c108afa..45a11b3 100644 --- a/test/common.js +++ b/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'; } -- 2.7.4