summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2016-06-19 17:25:30 +0100
committerJakub Zelenka <bukka@php.net>2016-06-19 17:25:30 +0100
commitd22d71b6c521321d5cc92b250c365a1a7ca74996 (patch)
tree51541661c6efdf52547bf952d58ecc3a0371d050
parent53071e647049f099f7f7a0771ddb63fc2cdd621c (diff)
downloadphp-git-d22d71b6c521321d5cc92b250c365a1a7ca74996.tar.gz
Remove test for incorrect fix of bug #69882
The fix just cleared the errors without storing which was wrong
-rw-r--r--ext/openssl/tests/bug69882.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/openssl/tests/bug69882.phpt b/ext/openssl/tests/bug69882.phpt
deleted file mode 100644
index 6963f8db79..0000000000
--- a/ext/openssl/tests/bug69882.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-Bug #69882: OpenSSL error "key values mismatch" after openssl_pkcs12_read with extra certs
---SKIPIF--
-<?php
-if (!extension_loaded("openssl")) die("skip");
-?>
---FILE--
-<?php
-$p12 = file_get_contents(__DIR__.'/p12_with_extra_certs.p12');
-
-$result = openssl_pkcs12_read($p12, $cert_data, 'qwerty');
-var_dump($result);
-var_dump(openssl_error_string());
-?>
---EXPECTF--
-bool(true)
-bool(false)