--TEST-- Bug #54992: Stream not closed and error not returned when SSL CN_match fails --SKIPIF-- array( 'verify_peer' => true, 'cafile' => __DIR__ . '/bug54992-ca.pem', 'CN_match' => 'buga_buga', ) ) ); var_dump(stream_socket_client("ssl://127.0.0.1:64321", $errno, $errstr, 1, STREAM_CLIENT_CONNECT, $contextC)); } else { @pcntl_wait($status); @stream_socket_accept($server, 1); } --EXPECTF-- Warning: stream_socket_client(): Peer certificate CN=`bug54992.local' did not match expected CN=`buga_buga' in %s on line %d Warning: stream_socket_client(): Failed to enable crypto in %s on line %d Warning: stream_socket_client(): unable to connect to ssl://127.0.0.1:64321 (Unknown error) in %s on line %d bool(false)