Revert "Fix #65: failing test case"

This commit is contained in:
Steven Fackler 2014-10-07 23:18:20 -04:00
parent 68b9bd700e
commit fec1c43a4a
2 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ fn get_reason(err: c_ulong) -> String {
}
#[test]
#[ignore] // FIXME #65
fn test_uknown_error_should_have_correct_messages() {
unsafe { ffi::SSL_load_error_strings(); }
let err = 336032784;
let library = get_lib(err);
let function = get_func(err);

View File

@ -25,7 +25,7 @@ fn init() {
INIT.doit(|| {
ffi::SSL_library_init();
ffi::SSL_load_error_strings();
ffi::ERR_load_crypto_strings(); // necessary?
ffi::ERR_load_crypto_strings();
let verify_idx = ffi::SSL_CTX_get_ex_new_index(0, ptr::null(), None,
None, None);
assert!(verify_idx >= 0);