diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-06-30 18:10:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-06-30 18:10:43 +0000 |
commit | 580397842eee6de74442bc203b3c301250c8ce3a (patch) | |
tree | 333f1d817f3edcc43df8506f8d7dea60b5e4d1c2 /regress/lib | |
parent | ba8723bbc1eb956202c65e2f170304afcdfb9899 (diff) |
Disable some tests that probably no longer make sense.
We'll either fix these or remove them in the near future.
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libssl/ciphers/cipherstest.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/regress/lib/libssl/ciphers/cipherstest.c b/regress/lib/libssl/ciphers/cipherstest.c index 4d0260e2aa5..8626bc06b47 100644 --- a/regress/lib/libssl/ciphers/cipherstest.c +++ b/regress/lib/libssl/ciphers/cipherstest.c @@ -32,6 +32,7 @@ ssl_aes_is_accelerated(void) #endif } +#if 0 static int get_put_test(const char *name, const SSL_METHOD *method) { @@ -117,6 +118,7 @@ cipher_get_put_tests(void) return failed; } +#endif static int cipher_get_by_value_tests(void) @@ -508,7 +510,10 @@ main(int argc, char **argv) { int failed = 0; +#if 0 failed |= cipher_get_put_tests(); +#endif + failed |= cipher_get_by_value_tests(); failed |= parse_ciphersuites_test(); |