diff options
author | Henry Rawas <henryr@schakra.com> | 2011-06-24 12:32:09 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-06-28 13:52:36 +0200 |
commit | 47a5d932563eb243a94441ea59b7d1a9023d5868 (patch) | |
tree | 0758f7a6a746dc327763ac9f14936cabc938d772 /test | |
parent | f657d58fe1b47c67dabcd19fab31907e5f4eb784 (diff) | |
download | nodejs-47a5d932563eb243a94441ea59b7d1a9023d5868.tar.gz nodejs-47a5d932563eb243a94441ea59b7d1a9023d5868.tar.bz2 nodejs-47a5d932563eb243a94441ea59b7d1a9023d5868.zip |
Fix test-net-pingpong.js on windows
Diffstat (limited to 'test')
-rw-r--r-- | test/simple/test-net-pingpong.js | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/test/simple/test-net-pingpong.js b/test/simple/test-net-pingpong.js index f20ec057f..035e4f389 100644 --- a/test/simple/test-net-pingpong.js +++ b/test/simple/test-net-pingpong.js @@ -129,12 +129,19 @@ function pingPongTest(port, host) { } /* All are run at once, so run on different ports */ -pingPongTest(20989, 'localhost'); +if (!process.useUV) { + // these tests will not run yet with net_uv TODO: remove when net_uv supports dns + pingPongTest(20989, 'localhost'); + pingPongTest(20997, '::1'); + pingPongTest('/tmp/pingpong.sock'); +} pingPongTest(20988); -pingPongTest(20997, '::1'); -pingPongTest('/tmp/pingpong.sock'); -process.addListener('exit', function() { - assert.equal(4, tests_run); +process.addListener('exit', function () { + if (!process.useUV) { + assert.equal(4, tests_run); + } else { + assert.equal(1, tests_run); + } console.log('done'); }); |