diff options
| author | Manuel Schölling <[email protected]> | 2015-03-15 16:09:33 +0100 |
|---|---|---|
| committer | Manuel Schölling <[email protected]> | 2015-04-06 12:23:11 +0200 |
| commit | 362a7dfc935bcace9d4d249e2bed853c315e256d (patch) | |
| tree | a41adb232f948219a762e1d81d650da879d7a1fb /openssl/src/ssl | |
| parent | Postpone custom openssl build (diff) | |
| download | rust-openssl-362a7dfc935bcace9d4d249e2bed853c315e256d.tar.xz rust-openssl-362a7dfc935bcace9d4d249e2bed853c315e256d.zip | |
Debug halteproblem with tests
Diffstat (limited to 'openssl/src/ssl')
| -rw-r--r-- | openssl/src/ssl/tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/src/ssl/tests.rs b/openssl/src/ssl/tests.rs index d1a91500..b9442010 100644 --- a/openssl/src/ssl/tests.rs +++ b/openssl/src/ssl/tests.rs @@ -119,7 +119,7 @@ run_test!(verify_trusted, |method, stream| { Err(err) => panic!("Expected success, got {:?}", err) } }); - +/* run_test!(verify_untrusted_callback_override_ok, |method, stream| { fn callback(_preverify_ok: bool, _x509_ctx: &X509StoreContext) -> bool { true @@ -288,7 +288,7 @@ run_test!(clear_ctx_options, |method, _| { let opts = ctx.clear_options(ssl::SSL_OP_ALL); assert!(!opts.contains(ssl::SSL_OP_ALL)); }); - +*/ #[test] fn test_write() { let stream = TcpStream::connect("127.0.0.1:15418").unwrap(); |