mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Add missing skip keyword in tests
This commit is contained in:
commit
73f29a5c5e
@ -3,7 +3,7 @@ Bug #77198 (auto cropping has insufficient precision)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded('gd')) die('skip gd extension not available');
|
||||
if (!GD_BUNDLED) die('upstream bugfix has not been released');
|
||||
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -3,7 +3,7 @@ Bug #77198 (threshold cropping has insufficient precision)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded('gd')) die('skip gd extension not available');
|
||||
if (!GD_BUNDLED) die('upstream bugfix has not been released');
|
||||
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -3,7 +3,7 @@ Bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded('gd')) die('skip gd extension not available');
|
||||
if (!GD_BUNDLED) die('upstream bugfix has not been released');
|
||||
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -2,7 +2,7 @@
|
||||
ldap_read() does not modify $attributes array
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded('ldap')) die('ldap extension not available');
|
||||
if (!extension_loaded('ldap')) die('skip ldap extension not available');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -5,7 +5,7 @@ Olivier Doucet
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once(__DIR__.'/skipif.inc');
|
||||
if (!function_exists('snmp_set_enum_print')) die('This function is only available if using NET_SNMP');
|
||||
if (!function_exists('snmp_set_enum_print')) die('skip This function is only available if using NET_SNMP');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -5,7 +5,7 @@ Olivier Doucet
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once(__DIR__.'/skipif.inc');
|
||||
if (!function_exists('snmp_set_oid_output_format')) die('This function is only available if using NET_SNMP');
|
||||
if (!function_exists('snmp_set_oid_output_format')) die('skip This function is only available if using NET_SNMP');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
@ -6,7 +6,7 @@ include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
|
||||
|
||||
skip_if_not_win();
|
||||
|
||||
if (strlen(__DIR__) > 259) die("Unsuitable starting path length");
|
||||
if (strlen(__DIR__) > 259) die("skip Unsuitable starting path length");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user