Skip to content

Commit 2fc5d00

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Add missing skip keyword in tests
2 parents 0805e13 + 209e37d commit 2fc5d00

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

ext/gd/tests/bug77198_auto.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bug #77198 (auto cropping has insufficient precision)
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('gd')) die('skip gd extension not available');
6-
if (!GD_BUNDLED) die('upstream bugfix has not been released');
6+
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
77
?>
88
--FILE--
99
<?php

ext/gd/tests/bug77198_threshold.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bug #77198 (threshold cropping has insufficient precision)
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('gd')) die('skip gd extension not available');
6-
if (!GD_BUNDLED) die('upstream bugfix has not been released');
6+
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
77
?>
88
--FILE--
99
<?php

ext/gd/tests/bug77200.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right)
33
--SKIPIF--
44
<?php
55
if (!extension_loaded('gd')) die('skip gd extension not available');
6-
if (!GD_BUNDLED) die('upstream bugfix has not been released');
6+
if (!GD_BUNDLED) die('skip upstream bugfix has not been released');
77
?>
88
--FILE--
99
<?php

ext/snmp/tests/snmp_set_enum_print.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Olivier Doucet
55
--SKIPIF--
66
<?php
77
require_once(dirname(__FILE__).'/skipif.inc');
8-
if (!function_exists('snmp_set_enum_print')) die('This function is only available if using NET_SNMP');
8+
if (!function_exists('snmp_set_enum_print')) die('skip This function is only available if using NET_SNMP');
99
?>
1010
--FILE--
1111
<?php

ext/snmp/tests/snmp_set_oid_output_format.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Olivier Doucet
55
--SKIPIF--
66
<?php
77
require_once(dirname(__FILE__).'/skipif.inc');
8-
if (!function_exists('snmp_set_oid_output_format')) die('This function is only available if using NET_SNMP');
8+
if (!function_exists('snmp_set_oid_output_format')) die('skip This function is only available if using NET_SNMP');
99
?>
1010
--FILE--
1111
<?php

ext/standard/tests/file/windows_mb_path/recursive_it.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";
66

77
skip_if_not_win();
88

9-
if (strlen(dirname(__FILE__)) > 259) die("Unsuitable starting path length");
9+
if (strlen(dirname(__FILE__)) > 259) die("skip Unsuitable starting path length");
1010
?>
1111
--FILE--
1212
<?php

0 commit comments

Comments
 (0)