summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2019-01-08 05:58:08 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-01-11 05:29:22 +0100
commita55cddd8ceea49d8fdff91b23e2bb00ef363ccc3 (patch)
tree4f92d4cdedf66f9aa734d53e12aeb804e83d74e3 /tools
parentb2f74f73f3087f6c55cfab3b25282f890ffa3e14 (diff)
downloadandroid-node-v8-a55cddd8ceea49d8fdff91b23e2bb00ef363ccc3.tar.gz
android-node-v8-a55cddd8ceea49d8fdff91b23e2bb00ef363ccc3.tar.bz2
android-node-v8-a55cddd8ceea49d8fdff91b23e2bb00ef363ccc3.zip
tools: add openssl-cli to macos-firewall.sh
Currently, there is a new popup asking to accept incoming connections for openssl-cli when running tests on macos. I believe the reason for this not being noticed before is that test-tls-securepair-client.js was moved recently from the pummel directory to sequential. This commit adds openssl-cli to the firewall script. PR-URL: https://github.com/nodejs/node/pull/25385 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/macos-firewall.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/macos-firewall.sh b/tools/macos-firewall.sh
index c1de916e3c..4079dc4d79 100755
--- a/tools/macos-firewall.sh
+++ b/tools/macos-firewall.sh
@@ -18,6 +18,8 @@ NODE_DEBUG="$OUTDIR/Debug/node"
NODE_LINK="$ROOTDIR/node"
CCTEST_RELEASE="$OUTDIR/Release/cctest"
CCTEST_DEBUG="$OUTDIR/Debug/cctest"
+OPENSSL_CLI_RELEASE="$OUTDIR/Release/openssl-cli"
+OPENSSL_CLI_DEBUG="$OUTDIR/Debug/openssl-cli"
if [ -f $SFW ];
then
@@ -31,18 +33,24 @@ then
$SFW --remove "$NODE_LINK"
$SFW --remove "$CCTEST_DEBUG"
$SFW --remove "$CCTEST_RELEASE"
+ $SFW --remove "$OPENSSL_CLI_DEBUG"
+ $SFW --remove "$OPENSSL_CLI_RELEASE"
$SFW --add "$NODE_DEBUG"
$SFW --add "$NODE_RELEASE"
$SFW --add "$NODE_LINK"
$SFW --add "$CCTEST_DEBUG"
$SFW --add "$CCTEST_RELEASE"
+ $SFW --add "$OPENSSL_CLI_DEBUG"
+ $SFW --add "$OPENSSL_CLI_RELEASE"
$SFW --unblock "$NODE_DEBUG"
$SFW --unblock "$NODE_RELEASE"
$SFW --unblock "$NODE_LINK"
$SFW --unblock "$CCTEST_DEBUG"
$SFW --unblock "$CCTEST_RELEASE"
+ $SFW --unblock "$OPENSSL_CLI_DEBUG"
+ $SFW --unblock "$OPENSSL_CLI_RELEASE"
else
echo "SocketFirewall not found in location: $SFW"
fi