diff options
author | Hans Nilsson <[email protected]> | 2015-10-16 15:44:33 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-10-19 12:48:53 +0200 |
commit | c7cb718a480ae03fedb842bc999d516aee7870b3 (patch) | |
tree | ec749aecdc87ebfc9f974ec1fc0668675ce9d00e /lib/ssh/test | |
parent | 16d2e402ca0a4f37f12175f866e1c6c2842303bb (diff) | |
download | otp-c7cb718a480ae03fedb842bc999d516aee7870b3.tar.gz otp-c7cb718a480ae03fedb842bc999d516aee7870b3.tar.bz2 otp-c7cb718a480ae03fedb842bc999d516aee7870b3.zip |
ssh: running ssh_algorithms_SUITE tests in parallel
Diffstat (limited to 'lib/ssh/test')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index 9f388de2a7..2ab83d84e1 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -58,7 +58,7 @@ groups() -> ], AlgoTcSet = - [{Alg, [], specific_test_cases(Tag,Alg,SshcAlgos,SshdAlgos)} + [{Alg, [parallel], specific_test_cases(Tag,Alg,SshcAlgos,SshdAlgos)} || {Tag,Algs} <- ErlAlgos ++ DoubleAlgos, Alg <- Algs], @@ -110,7 +110,8 @@ init_per_group(Group, Config) -> Config; false -> %% An algorithm group - [[{name,Tag}]|_] = ?config(tc_group_path, Config), + Tag = proplists:get_value(name, + hd(?config(tc_group_path, Config))), Alg = Group, PA = case split(Alg) of |