summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Villepinte <fabien.villepinte@gmail.com>2019-10-01 10:59:40 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-10-01 11:13:36 +0200
commit209e37db7dfda878b14ec3638c6cd78e0f61d7a0 (patch)
tree95b225b528a963441704899b57d1ec19c93c4574
parent6fcde56b0370125c32e6a7d198aff2afd01c35dc (diff)
downloadphp-git-209e37db7dfda878b14ec3638c6cd78e0f61d7a0.tar.gz
Add missing skip keyword in tests
-rw-r--r--ext/gd/tests/bug77198_auto.phpt2
-rw-r--r--ext/gd/tests/bug77198_threshold.phpt2
-rw-r--r--ext/gd/tests/bug77200.phpt2
-rw-r--r--ext/snmp/tests/snmp_set_enum_print.phpt2
-rw-r--r--ext/snmp/tests/snmp_set_oid_output_format.phpt2
-rw-r--r--ext/standard/tests/file/windows_mb_path/recursive_it.phpt2
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/gd/tests/bug77198_auto.phpt b/ext/gd/tests/bug77198_auto.phpt
index d06f2be663..b010f97483 100644
--- a/ext/gd/tests/bug77198_auto.phpt
+++ b/ext/gd/tests/bug77198_auto.phpt
@@ -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
diff --git a/ext/gd/tests/bug77198_threshold.phpt b/ext/gd/tests/bug77198_threshold.phpt
index fd03660c84..a7135ee07e 100644
--- a/ext/gd/tests/bug77198_threshold.phpt
+++ b/ext/gd/tests/bug77198_threshold.phpt
@@ -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
diff --git a/ext/gd/tests/bug77200.phpt b/ext/gd/tests/bug77200.phpt
index 704b1796e7..99d8efb550 100644
--- a/ext/gd/tests/bug77200.phpt
+++ b/ext/gd/tests/bug77200.phpt
@@ -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
diff --git a/ext/snmp/tests/snmp_set_enum_print.phpt b/ext/snmp/tests/snmp_set_enum_print.phpt
index 6f8dcce1c2..cfc5c171d6 100644
--- a/ext/snmp/tests/snmp_set_enum_print.phpt
+++ b/ext/snmp/tests/snmp_set_enum_print.phpt
@@ -5,7 +5,7 @@ Olivier Doucet
--SKIPIF--
<?php
require_once(dirname(__FILE__).'/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
diff --git a/ext/snmp/tests/snmp_set_oid_output_format.phpt b/ext/snmp/tests/snmp_set_oid_output_format.phpt
index 06c2240a78..7aef2c4489 100644
--- a/ext/snmp/tests/snmp_set_oid_output_format.phpt
+++ b/ext/snmp/tests/snmp_set_oid_output_format.phpt
@@ -5,7 +5,7 @@ Olivier Doucet
--SKIPIF--
<?php
require_once(dirname(__FILE__).'/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
diff --git a/ext/standard/tests/file/windows_mb_path/recursive_it.phpt b/ext/standard/tests/file/windows_mb_path/recursive_it.phpt
index 19c08a38c2..d2514bdb65 100644
--- a/ext/standard/tests/file/windows_mb_path/recursive_it.phpt
+++ b/ext/standard/tests/file/windows_mb_path/recursive_it.phpt
@@ -6,7 +6,7 @@ include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win();
-if (strlen(dirname(__FILE__)) > 259) die("Unsuitable starting path length");
+if (strlen(dirname(__FILE__)) > 259) die("skip Unsuitable starting path length");
?>
--FILE--
<?php