Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Add missing skip keyword in tests
This commit is contained in:
Christoph M. Becker 2019-10-01 11:17:23 +02:00
commit 73f29a5c5e
7 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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