summaryrefslogtreecommitdiff
path: root/lib/ssl/test
diff options
context:
space:
mode:
authorRaimo Niskanen <raimo@erlang.org>2023-01-02 16:14:44 +0100
committerRaimo Niskanen <raimo@erlang.org>2023-02-09 15:32:21 +0100
commitef3dc0ba96bf0d67f371abb2e81a78ccebbc8cd9 (patch)
treeb620658e5903648b3a71899f389f4eb2852d921a /lib/ssl/test
parenta58cf75f25e5080ddd45729f2d42fa7eada1c69c (diff)
downloaderlang-ef3dc0ba96bf0d67f371abb2e81a78ccebbc8cd9.tar.gz
Rename to socket_cryptcookie to make room for other backends
Diffstat (limited to 'lib/ssl/test')
-rw-r--r--lib/ssl/test/Makefile4
-rw-r--r--lib/ssl/test/inet_epmd_socket_cryptcookie.erl (renamed from lib/ssl/test/inet_epmd_cryptcookie.erl)2
-rw-r--r--lib/ssl/test/ssl_dist_bench_SUITE.erl4
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/ssl/test/Makefile b/lib/ssl/test/Makefile
index e0549d652a..fdd1113fc7 100644
--- a/lib/ssl/test/Makefile
+++ b/lib/ssl/test/Makefile
@@ -1,7 +1,7 @@
#
# %CopyrightBegin%
#
-# Copyright Ericsson AB 1999-2022. All Rights Reserved.
+# Copyright Ericsson AB 1999-2023. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -98,7 +98,7 @@ MODULES = \
inet_cryptcookie_dist \
inet_crypto_dist \
dist_cryptcookie \
- inet_epmd_cryptcookie \
+ inet_epmd_socket_cryptcookie \
openssl_ocsp_SUITE \
tls_server_session_ticket_SUITE \
tls_client_ticket_store_SUITE
diff --git a/lib/ssl/test/inet_epmd_cryptcookie.erl b/lib/ssl/test/inet_epmd_socket_cryptcookie.erl
index 202b21866d..b1dfec59d8 100644
--- a/lib/ssl/test/inet_epmd_cryptcookie.erl
+++ b/lib/ssl/test/inet_epmd_socket_cryptcookie.erl
@@ -24,7 +24,7 @@
%% and the crypto application, over gen_tcp and inet,
%% enabling the use of inet_backend = socket
%%
--module(inet_epmd_cryptcookie).
+-module(inet_epmd_socket_cryptcookie).
-feature(maybe_expr, enable).
%% DistMod API
diff --git a/lib/ssl/test/ssl_dist_bench_SUITE.erl b/lib/ssl/test/ssl_dist_bench_SUITE.erl
index 2024c1652c..a76777dc5d 100644
--- a/lib/ssl/test/ssl_dist_bench_SUITE.erl
+++ b/lib/ssl/test/ssl_dist_bench_SUITE.erl
@@ -234,11 +234,11 @@ init_per_group(benchmark, Config) ->
init_per_group(ssl, Config) ->
[{ssl_dist, true}, {ssl_dist_prefix, "SSL"}|Config];
init_per_group(crypto, Config) ->
- try inet_epmd_cryptcookie:supported() of
+ try inet_epmd_socket_cryptcookie:supported() of
ok ->
[{ssl_dist, false}, {ssl_dist_prefix, "Crypto"},
{ssl_dist_args,
- "-proto_dist inet_epmd -inet_epmd cryptcookie"}
+ "-proto_dist inet_epmd -inet_epmd socket_cryptcookie"}
| Config];
Problem ->
{skip, Problem}