summaryrefslogtreecommitdiff
path: root/lib/ssh/test/ssh_algorithms_SUITE.erl
diff options
context:
space:
mode:
authorHans Nilsson <hans@erlang.org>2020-06-18 15:59:41 +0200
committerHans Nilsson <hans@erlang.org>2020-06-24 09:25:23 +0200
commit5bea41efb224782823e1cb6ad227bb3f43c1aae3 (patch)
tree393946e532040e0b723a67bdc12da7d500d77146 /lib/ssh/test/ssh_algorithms_SUITE.erl
parent283929c1588957def82b71e25f0a1404396935ae (diff)
downloaderlang-5bea41efb224782823e1cb6ad227bb3f43c1aae3.tar.gz
ssh: export_all -> -export
Diffstat (limited to 'lib/ssh/test/ssh_algorithms_SUITE.erl')
-rw-r--r--lib/ssh/test/ssh_algorithms_SUITE.erl26
1 files changed, 24 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl
index 4832c0ad3b..55c0b723eb 100644
--- a/lib/ssh/test/ssh_algorithms_SUITE.erl
+++ b/lib/ssh/test/ssh_algorithms_SUITE.erl
@@ -26,8 +26,30 @@
-include_lib("ssh/src/ssh_transport.hrl").
-include("ssh_test_lib.hrl").
-%% Note: This directive should only be used in test suites.
--compile(export_all).
+-export([
+ suite/0,
+ all/0,
+ groups/0,
+ init_per_suite/1,
+ end_per_suite/1,
+ init_per_group/2,
+ end_per_group/2,
+ init_per_testcase/2,
+ end_per_testcase/2
+ ]).
+
+-export([
+ interpolate/1,
+ simple_connect/1,
+ simple_exec/1,
+ simple_exec_groups/0,
+ simple_exec_groups/1,
+ simple_exec_groups_no_match_too_large/1,
+ simple_exec_groups_no_match_too_small/1,
+ simple_sftp/1,
+ sshc_simple_exec_os_cmd/1,
+ sshd_simple_exec/1
+ ]).
%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------