diff options
author | Hans Nilsson <[email protected]> | 2015-08-31 09:52:19 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-08-31 09:52:19 +0200 |
commit | fa859b04e560744a5982fce0bdce1e1d71b1a81f (patch) | |
tree | e0db7b714ab50556d5f586586e50fd68b8508a64 /lib/ssh/test | |
parent | bd698a302da6f4ca0940add26852c32dc27d3d07 (diff) | |
parent | 46332e63065f0b76e0373f77b862590760b23f85 (diff) | |
download | otp-fa859b04e560744a5982fce0bdce1e1d71b1a81f.tar.gz otp-fa859b04e560744a5982fce0bdce1e1d71b1a81f.tar.bz2 otp-fa859b04e560744a5982fce0bdce1e1d71b1a81f.zip |
Merge branch 'maint'
* maint:
ssh: dh_gex defautl values increased. Groups added
Diffstat (limited to 'lib/ssh/test')
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index cf2df5028a..d8e99799e2 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -343,13 +343,15 @@ gex_client_init_default_exact(Config) -> gex_client_init_option_groups(Config) -> - do_gex_client_init(Config, {2000, 2048, 4000}, {3,41}). + do_gex_client_init(Config, {2000, 2048, 4000}, + {'n/a',{3,41}}). gex_client_init_option_groups_file(Config) -> - do_gex_client_init(Config, {2000, 2048, 4000}, {5,61}). + do_gex_client_init(Config, {2000, 2048, 4000}, + {'n/a',{5,61}}). -do_gex_client_init(Config, {Min,N,Max}, {G,P}) -> +do_gex_client_init(Config, {Min,N,Max}, {_,{G,P}}) -> {ok,_} = ssh_trpt_test_lib:exec( [{set_options, [print_ops, print_seqnums, print_messages]}, |