]> granicus.if.org Git - php/commitdiff
Make some skipped tests run, and fix some skip messages
authorGabriel Caruso <carusogabriel34@gmail.com>
Fri, 2 Mar 2018 01:39:23 +0000 (22:39 -0300)
committerNikita Popov <nikita.ppv@gmail.com>
Sun, 11 Mar 2018 15:38:00 +0000 (16:38 +0100)
ext/date/tests/gmstrftime_variation9.phpt
ext/filter/tests/bug52209.phpt
ext/soap/tests/bugs/bug34657.phpt

index 6ba33ac394e63c9cf6f8138721345a2b890d3796..ec69404cfcbdac88d1e59b58e7e04925504c29ef 100644 (file)
@@ -1,17 +1,17 @@
 --TEST--
-Test gmstrftime() function : usage variation - Checking week related formats which was not supported on Windows before vc14. 
+Test gmstrftime() function : usage variation - Checking week related formats which was not supported on Windows before vc14.
 --SKIPIF--
 <?php
 if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
-    die("skip Test is not valid for Windows");
+    die("skip Test is only valid for Windows");
 }
 ?>
 --FILE--
 <?php
 /* Prototype  : string gmstrftime(string format [, int timestamp])
- * Description: Format a GMT/UCT time/date according to locale settings 
+ * Description: Format a GMT/UCT time/date according to locale settings
  * Source code: ext/date/php_date.c
- * Alias to functions: 
+ * Alias to functions:
  */
 
 echo "*** Testing gmstrftime() : usage variation ***\n";
index 79db74945421f07a5402223753b47241aeb4a3ca..3035784147b6dfc1f3b504723b835a36ce609b65 100644 (file)
@@ -2,11 +2,12 @@
 Bug #52209 (INPUT_ENV returns NULL for set variables (CLI))
 --SKIPIF--
 <?php
-/* This test makes no sense on windows as an empty variable 
-   would never show up in the "set" list. Which means, it's 
+/* This test makes no sense on windows as an empty variable
+   would never show up in the "set" list. Which means, it's
    always undefined in PHP. */
 if(substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows");
-if (!extension_loaded("filter") || !empty($_ENV['PWD'])) die("skip");
+if (!extension_loaded("filter")) die ('skip filter extension not loaded');
+if (empty($_ENV['PWD'])) die('skip PWD is empty');
 ?>
 --INI--
 variables_order=GPCSE
@@ -14,5 +15,5 @@ variables_order=GPCSE
 <?php
        var_dump(filter_input(INPUT_ENV, 'PWD'));
 ?>
---EXPECTF--    
+--EXPECTF--
 string(%d) "%s"
index 9b67ec69ad801e639865f9f8676f70287ebecdb7..8c182ad7d4268edd7700f88cc9385dbe6119bdfa 100644 (file)
@@ -1,15 +1,8 @@
 --TEST--
 Bug #34657 (If you get a communication problem when loading the WSDL, it fatal's)
 --SKIPIF--
-<?php 
-require_once('skipif.inc'); 
-if (extension_loaded("openssl")) {
-       /* 
-        when openssl loaded, tcp stream is less verbose, so some error messages are missing 
-        so let's skip the test in this case  
-        */
-       die("skip OpenSSL extension required");
-}
+<?php
+require_once('skipif.inc');
 ?>
 --FILE--
 <?php