mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Skip tests if ldap_set_rebind_proc() is not available
This commit is contained in:
commit
fb6d500457
2 changed files with 8 additions and 2 deletions
|
@ -6,7 +6,10 @@ Patrick Allaert <patrickallaert@php.net>
|
|||
--EXTENSIONS--
|
||||
ldap
|
||||
--SKIPIF--
|
||||
<?php require_once('skipifbindfailure.inc'); ?>
|
||||
<?php
|
||||
if (!function_exists('ldap_set_rebind_proc')) die("skip ldap_set_rebind_proc() not available");
|
||||
require_once('skipifbindfailure.inc');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
require "connect.inc";
|
||||
|
|
|
@ -6,7 +6,10 @@ Patrick Allaert <patrickallaert@php.net>
|
|||
--EXTENSIONS--
|
||||
ldap
|
||||
--SKIPIF--
|
||||
<?php require_once('skipifbindfailure.inc'); ?>
|
||||
<?php
|
||||
if (!function_exists('ldap_set_rebind_proc')) die("skip ldap_set_rebind_proc() not available");
|
||||
require_once('skipifbindfailure.inc');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
require "connect.inc";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue