Commit 45a2ee3f by Carlos Martín Nieto

https: don't test that RC4 is invalid

None of our crypto backends actually reject RC4 as a cipher so don't
test for it and instead keep it as something we'd like to do.
parent d3cb8f64
...@@ -67,6 +67,9 @@ void test_online_badssl__old_cipher(void) ...@@ -67,6 +67,9 @@ void test_online_badssl__old_cipher(void)
git_clone_options opts = GIT_CLONE_OPTIONS_INIT; git_clone_options opts = GIT_CLONE_OPTIONS_INIT;
opts.fetch_opts.callbacks.certificate_check = cert_check_assert_invalid; opts.fetch_opts.callbacks.certificate_check = cert_check_assert_invalid;
/* FIXME: we don't actually reject RC4 anywhere, figure out what to tweak */
cl_skip();
if (!g_has_ssl) if (!g_has_ssl)
cl_skip(); cl_skip();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment