Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:Ledest:erlang:24
erlang
3759-ssl-Comment-out-test-that-can-not-be-run-c...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 3759-ssl-Comment-out-test-that-can-not-be-run-currently.patch of Package erlang
From 34dc006ef8b62be489d509927ba11dfb85d19d98 Mon Sep 17 00:00:00 2001 From: Ingela Anderton Andin <ingela@erlang.org> Date: Fri, 9 Sep 2022 15:03:32 +0200 Subject: [PATCH 09/10] ssl: Comment out test that can not be run currently We could want to look into extending OpenSSL test framework to create configuration to run these test. But it probably not very important as it is insecure legacy functionality. --- lib/ssl/test/openssl_cipher_suite_SUITE.erl | 178 ++++++++++---------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/lib/ssl/test/openssl_cipher_suite_SUITE.erl b/lib/ssl/test/openssl_cipher_suite_SUITE.erl index f46dc79f6e..ebce3b4870 100644 --- a/lib/ssl/test/openssl_cipher_suite_SUITE.erl +++ b/lib/ssl/test/openssl_cipher_suite_SUITE.erl @@ -35,7 +35,7 @@ end_per_testcase/2]). %% Testcases --export([dhe_psk_des_cbc/1, +-export([%%dhe_psk_des_cbc/1, dhe_rsa_3des_ede_cbc/1, dhe_rsa_aes_128_cbc/1, dhe_rsa_aes_128_gcm/1, @@ -622,38 +622,38 @@ aes_128_ccm_8_sha256(Config) when is_list(Config) -> %%-------------------------------------------------------------------- %% SRP -------------------------------------------------------- %%-------------------------------------------------------------------- -srp_rsa_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_rsa, '3des_ede_cbc', Config). +%% srp_rsa_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_rsa, '3des_ede_cbc', Config). -srp_rsa_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_rsa, 'aes_128_cbc', Config). +%% srp_rsa_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_rsa, 'aes_128_cbc', Config). -srp_rsa_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_rsa, 'aes_256_cbc', Config). +%% srp_rsa_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_rsa, 'aes_256_cbc', Config). -srp_dss_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_dss, '3des_ede_cbc', Config). +%% srp_dss_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_dss, '3des_ede_cbc', Config). -srp_dss_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_dss, 'aes_128_cbc', Config). +%% srp_dss_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_dss, 'aes_128_cbc', Config). -srp_dss_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_dss, 'aes_256_cbc', Config). +%% srp_dss_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_dss, 'aes_256_cbc', Config). %%-------------------------------------------------------------------- %% PSK -------------------------------------------------------- %%-------------------------------------------------------------------- -rsa_psk_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(rsa_psk, '3des_ede_cbc', Config). +%% rsa_psk_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(rsa_psk, '3des_ede_cbc', Config). -rsa_psk_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(rsa_psk, 'aes_128_cbc', Config). +%% rsa_psk_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(rsa_psk, 'aes_128_cbc', Config). -rsa_psk_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(rsa_psk, 'aes_256_cbc', Config). +%% rsa_psk_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(rsa_psk, 'aes_256_cbc', Config). -rsa_psk_rc4_128(Config) when is_list(Config) -> - run_ciphers_test(rsa_psk, 'rc4_128', Config). +%% rsa_psk_rc4_128(Config) when is_list(Config) -> +%% run_ciphers_test(rsa_psk, 'rc4_128', Config). %%-------------------------------------------------------------------- %% RSA -------------------------------------------------------- @@ -808,107 +808,107 @@ ecdh_anon_aes_128_cbc(Config) when is_list(Config) -> ecdh_anon_aes_256_cbc(Config) when is_list(Config) -> run_ciphers_test(ecdh_anon, 'aes_256_cbc', Config). -srp_anon_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_anon, '3des_ede_cbc', Config). +%% srp_anon_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_anon, '3des_ede_cbc', Config). -srp_anon_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_anon, 'aes_128_cbc', Config). +%% srp_anon_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_anon, 'aes_128_cbc', Config). -srp_anon_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(srp_anon, 'aes_256_cbc', Config). +%% srp_anon_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(srp_anon, 'aes_256_cbc', Config). -dhe_psk_des_cbc(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'des_cbc', Config). +%% dhe_psk_des_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'des_cbc', Config). -dhe_psk_rc4_128(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'rc4_128', Config). +%% dhe_psk_rc4_128(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'rc4_128', Config). -dhe_psk_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, '3des_ede_cbc', Config). +%% dhe_psk_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, '3des_ede_cbc', Config). -dhe_psk_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_128_cbc', Config). +%% dhe_psk_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_128_cbc', Config). -dhe_psk_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_256_cbc', Config). +%% dhe_psk_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_256_cbc', Config). -dhe_psk_aes_128_gcm(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_128_gcm', Config). +%% dhe_psk_aes_128_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_128_gcm', Config). -dhe_psk_aes_256_gcm(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_256_gcm', Config). +%% dhe_psk_aes_256_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_256_gcm', Config). -dhe_psk_aes_128_ccm(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_128_ccm', Config). +%% dhe_psk_aes_128_ccm(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_128_ccm', Config). -dhe_psk_aes_256_ccm(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_256_ccm', Config). +%% dhe_psk_aes_256_ccm(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_256_ccm', Config). -dhe_psk_aes_128_ccm_8(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_128_ccm_8', Config). +%% dhe_psk_aes_128_ccm_8(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_128_ccm_8', Config). -dhe_psk_aes_256_ccm_8(Config) when is_list(Config) -> - run_ciphers_test(dhe_psk, 'aes_256_ccm_8', Config). +%% dhe_psk_aes_256_ccm_8(Config) when is_list(Config) -> +%% run_ciphers_test(dhe_psk, 'aes_256_ccm_8', Config). -ecdhe_psk_des_cbc(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'des_cbc', Config). +%% ecdhe_psk_des_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'des_cbc', Config). -ecdhe_psk_rc4_128(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'rc4_128', Config). +%% ecdhe_psk_rc4_128(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'rc4_128', Config). -ecdhe_psk_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, '3des_ede_cbc', Config). +%% ecdhe_psk_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, '3des_ede_cbc', Config). -ecdhe_psk_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_128_cbc', Config). +%% ecdhe_psk_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_128_cbc', Config). -ecdhe_psk_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_256_cbc', Config). +%% ecdhe_psk_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_256_cbc', Config). -ecdhe_psk_aes_128_gcm(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_128_gcm', Config). +%% ecdhe_psk_aes_128_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_128_gcm', Config). -ecdhe_psk_aes_256_gcm(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_256_gcm', Config). +%% ecdhe_psk_aes_256_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_256_gcm', Config). -ecdhe_psk_aes_128_ccm(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_128_ccm', Config). +%% ecdhe_psk_aes_128_ccm(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_128_ccm', Config). -ecdhe_psk_aes_128_ccm_8(Config) when is_list(Config) -> - run_ciphers_test(ecdhe_psk, 'aes_128_ccm_8', Config). +%% ecdhe_psk_aes_128_ccm_8(Config) when is_list(Config) -> +%% run_ciphers_test(ecdhe_psk, 'aes_128_ccm_8', Config). -psk_des_cbc(Config) when is_list(Config) -> - run_ciphers_test(psk, 'des_cbc', Config). +%% psk_des_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'des_cbc', Config). -psk_rc4_128(Config) when is_list(Config) -> - run_ciphers_test(psk, 'rc4_128', Config). +%% psk_rc4_128(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'rc4_128', Config). -psk_3des_ede_cbc(Config) when is_list(Config) -> - run_ciphers_test(psk, '3des_ede_cbc', Config). +%% psk_3des_ede_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(psk, '3des_ede_cbc', Config). -psk_aes_128_cbc(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_128_cbc', Config). +%% psk_aes_128_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_128_cbc', Config). -psk_aes_256_cbc(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_256_cbc', Config). +%% psk_aes_256_cbc(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_256_cbc', Config). -psk_aes_128_gcm(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_128_gcm', Config). +%% psk_aes_128_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_128_gcm', Config). -psk_aes_256_gcm(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_256_gcm', Config). +%% psk_aes_256_gcm(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_256_gcm', Config). -psk_aes_128_ccm(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_128_ccm', Config). +%% psk_aes_128_ccm(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_128_ccm', Config). -psk_aes_256_ccm(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_256_ccm', Config). +%% psk_aes_256_ccm(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_256_ccm', Config). -psk_aes_128_ccm_8(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_128_ccm_8', Config). +%% psk_aes_128_ccm_8(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_128_ccm_8', Config). -psk_aes_256_ccm_8(Config) when is_list(Config) -> - run_ciphers_test(psk, 'aes_256_ccm_8', Config). +%% psk_aes_256_ccm_8(Config) when is_list(Config) -> +%% run_ciphers_test(psk, 'aes_256_ccm_8', Config). %%-------------------------------------------------------------------- %% Internal functions ---------------------------------------------- -- 2.35.3
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor