]> granicus.if.org Git - php/commitdiff
more verbose skip reason in test files with not so obvious extension requirements
authorOlivier DOUCET <odoucet@php.net>
Sat, 25 Feb 2012 12:10:41 +0000 (12:10 +0000)
committerOlivier DOUCET <odoucet@php.net>
Sat, 25 Feb 2012 12:10:41 +0000 (12:10 +0000)
14 files changed:
Zend/tests/bug34199.phpt
Zend/tests/bug39602.phpt
Zend/tests/bug42819.phpt
Zend/tests/bug43918.phpt
Zend/tests/bug50174.phpt
Zend/tests/gc_024.phpt
Zend/tests/unset_cv10.phpt
ext/soap/tests/bugs/bug34657.phpt
ext/spl/tests/iterator_006.phpt
ext/standard/tests/streams/stream_get_line_nb.phpt
ext/xmlreader/tests/expand.phpt
sapi/cli/tests/004.phpt
sapi/cli/tests/005.phpt
sapi/cli/tests/006.phpt

index daae0deb3d5211a56345307619026a0d775520b2..3012d808fa93a329ac32a1559755784505290845 100755 (executable)
@@ -1,7 +1,7 @@
 --TEST--
 Bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler)
 --SKIPIF--
-<?php if (!extension_loaded("simplexml")) print "skip"; ?>
+<?php if (!extension_loaded("simplexml")) print "skip SimpleXML extension required"; ?>
 --FILE--
 <?php
 $xml = "<root></root>";
index daa10e4fdb4620154a348a8ce0ea1580be06997d..db8763d8ae7fc0b097f53dc72921bd8c8940fd83 100755 (executable)
@@ -1,7 +1,7 @@
 --TEST--
 Bug #39602 (Invalid session.save_handler crashes PHP)
 --SKIPIF--
-<?php if (!extension_loaded("session")) die("skip"); ?>
+<?php if (!extension_loaded("session")) die("skip session extension required"); ?>
 --INI--
 session.save_handler=qwerty
 error_reporting=0
index f4387eb93b5614bc88ab33fd05aa9e1c6434bdb8..e5266036990d26e7107ca8b601037c7dcd88ed4f 100755 (executable)
@@ -1,7 +1,7 @@
 --TEST--
 Bug #42819 (namespaces in indexes of constant arrays)
 --SKIPIF--
-<?php if (!extension_loaded("spl")) print "skip"; ?>
+<?php if (!extension_loaded("spl")) print "skip SPL extension required"; ?>
 --FILE--
 <?php
 namespace foo\foo;
index c76ce83de8489b561e94c73fcc6b1101a6e6d825..e3389818bef1ad8fc215c61f6733dd43f4f14d7f 100644 (file)
@@ -1,7 +1,7 @@
 --TEST--
 Bug #43918 (Segmentation fault in garbage collector)
 --SKIPIF--
-<?php if (!extension_loaded("simplexml")) print "skip"; ?>
+<?php if (!extension_loaded("simplexml")) print "skip SimpleXML extension required"; ?>
 --FILE--
 <?php
 $xmlstr = <<<XML
index fef65136ba8e58432b1ddd960011919294cfd9b2..ac2ad2cb8d7b12c8240c8d4c06ef4c02f21702ed 100644 (file)
@@ -1,7 +1,7 @@
 --TEST--
 Bug #50174 (Incorrectly matched docComment)
 --SKIPIF--
-<?php if (!extension_loaded('reflection') || !extension_loaded('spl')) print "skip"; ?>
+<?php if (!extension_loaded('reflection') || !extension_loaded('spl')) print "skip SPL and reflection extensions required"; ?>
 --FILE--
 <?php
 
index a139e95da47bb363e8c4f46ce1beabbf52c31a4e..9a2ceb88f504541ea14f8e900be6a3458ab5e097 100644 (file)
@@ -3,7 +3,7 @@ GC 024: GC and objects with non-standard handlers
 --INI--
 zend.enable_gc=1
 --SKIPIF--
-<?php if (!extension_loaded("spl")) print "skip"; ?>
+<?php if (!extension_loaded("spl")) print "skip SPL extension required"; ?>
 --FILE--
 <?php
 $a = new ArrayObject();
index 0eb41922c5002bfe9643db106b06b8c4c9a82649..3b943d8b6ab8171ec6dcf5adadb1eb73595e8287 100644 (file)
@@ -1,7 +1,7 @@
 --TEST--
 unset() CV 10 (unset() of global variable in ArrayObject::offsetUnset($GLOBALS))
 --SKIPIF--
-<?php if (!extension_loaded("spl")) print "skip"; ?>
+<?php if (!extension_loaded("spl")) print "skip SPL extension required"; ?>
 --FILE--
 <?php
 $a = new ArrayObject($GLOBALS);
index 0069c939562e3c6f140c032e608717ec51c738f8..d974d02cc6ae8d81b74dbfb25cf175569e986eea 100755 (executable)
@@ -8,7 +8,7 @@ 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");
+       die("skip OpenSSL extension required");
 }
 ?>
 --FILE--
index 1a1be0561ad1a4090acf1d7e334dd2411a1b9f9f..54da89cbd73d36db45a9fe93c7f6a88b223ef69a 100755 (executable)
@@ -1,7 +1,7 @@
 --TEST--
 SPL: IteratorIterator and SimpleXMlElement
 --SKIPIF--
-<?php if (!extension_loaded('simplexml')) print "skip"; ?>
+<?php if (!extension_loaded('simplexml')) print "skip SimpleXML required"; ?>
 --FILE--
 <?php
 
index 3e3848f54a0b06a0580bfe872a558e7ae9a2631b..ce981203ffbb201359d0b40a39f08749973bcfd0 100644 (file)
@@ -3,7 +3,7 @@ stream_get_line() on non-blocking stream
 --SKIPIF--
 <?php
 $sockets = @stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0);
-if (!$sockets) die("skip");
+if (!$sockets) die("skip stream_socket_pair() should work");
 fclose($sockets[0]);
 fclose($sockets[1]);
 ?>
index 99c0604b8e6f719f4e4df45794a7a6fa8a017b3e..c77e6c31b79c942d891d772185fd6832fdda7187 100644 (file)
@@ -2,7 +2,7 @@
 XMLReader: Expand into existing DOM documet
 --SKIPIF--
 <?php if (!extension_loaded("xmlreader")) print "skip";
-if (!extension_loaded("dom")) print "skip";
+if (!extension_loaded("dom")) print "skip DOM extension required";
 $reader = new XMLReader();
 if (!method_exists($reader, 'expand')) print "skip";
 ?>
index a1a01355d2e8aacc19626219cc9536f81bdfcc95..378515d46447d928b32abe4ffb59273c95ae27d0 100644 (file)
@@ -4,7 +4,7 @@ show information about function
 <?php 
 include "skipif.inc"; 
 if (!extension_loaded("reflection")) {
-       die("skip");
+       die("skip reflection extension required");
 }
 ?>
 --FILE--
index 914e33c7feb23d0e56e3d3907bc5d6e5fdfca4d2..84b0f98440a6c23d2312a9cc935701a7bd32ee75 100644 (file)
@@ -4,7 +4,7 @@ show information about class
 <?php 
 include "skipif.inc"; 
 if (!extension_loaded("reflection")) {
-       die("skip");
+       die("skip reflection extension required");
 }
 ?>
 --FILE--
index 530bfbd9ffc02fdac4231ac0a55925fcdc4207e4..3f3f3c13a128e39928bc3ca78df2374dc0ba27e8 100644 (file)
@@ -4,7 +4,7 @@ show information about extension
 <?php 
 include "skipif.inc"; 
 if (!extension_loaded("reflection") || !extension_loaded("session")) {
-       die("skip");
+       die("skip reflection and session extensions required");
 }
 ?>
 --INI--