aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures
diff options
context:
space:
mode:
authorRefael Ackermann <refack@gmail.com>2017-07-11 10:03:19 -0400
committerRefael Ackermann <refack@gmail.com>2017-07-14 19:36:10 -0400
commitc34ae48083b44f1da7be75c8d11abc9f3aa7ab19 (patch)
tree05ae304531eff6f86f866c289579cf75692aca0e /test/fixtures
parentb4300536f5e77561137259105814e3a6c5d5121b (diff)
downloadandroid-node-v8-c34ae48083b44f1da7be75c8d11abc9f3aa7ab19.tar.gz
android-node-v8-c34ae48083b44f1da7be75c8d11abc9f3aa7ab19.tar.bz2
android-node-v8-c34ae48083b44f1da7be75c8d11abc9f3aa7ab19.zip
test: make common.PIPE process unique
* includes a tiny bit of refactoring in adjacent lines. * fixes 1 test and 1 benchmark that depended on PIPE being constant. PR-URL: https://github.com/nodejs/node/pull/14168 Fixes: https://github.com/nodejs/node/issues/14128 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/fixtures')
-rw-r--r--test/fixtures/listen-on-socket-and-exit.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/fixtures/listen-on-socket-and-exit.js b/test/fixtures/listen-on-socket-and-exit.js
deleted file mode 100644
index aeb6cb482b..0000000000
--- a/test/fixtures/listen-on-socket-and-exit.js
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright Joyent, Inc. and other Node contributors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a
-// copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to permit
-// persons to whom the Software is furnished to do so, subject to the
-// following conditions:
-//
-// The above copyright notice and this permission notice shall be included
-// in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
-// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
-// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
-// USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-// child process that listens on a socket, allows testing of an EADDRINUSE condition
-
-const common = require('../common');
-const net = require('net');
-
-common.refreshTmpDir();
-
-var server = net.createServer().listen(common.PIPE, function() {
- console.log('child listening');
- process.send('listening');
-});
-
-function onmessage() {
- console.log('child exiting');
- server.close();
-}
-
-process.once('message', onmessage);