diff options
author | Antony Dovgal <tony2001@php.net> | 2007-07-16 13:46:38 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-07-16 13:46:38 +0000 |
commit | a63e10718823fae788b165f80d8d1f3910f090f3 (patch) | |
tree | 1a51d36cea64ff7adda35f1bba7434e61330f4db /ext | |
parent | 7c44729e412d0f9fe7b4301393082dfba67736a8 (diff) | |
download | php-git-a63e10718823fae788b165f80d8d1f3910f090f3.tar.gz |
add missing skipifs
Diffstat (limited to 'ext')
-rw-r--r-- | ext/simplexml/tests/bug40451.phpt | 2 | ||||
-rw-r--r-- | ext/simplexml/tests/bug41582.phpt | 2 | ||||
-rw-r--r-- | ext/simplexml/tests/bug41861.phpt | 2 | ||||
-rw-r--r-- | ext/simplexml/tests/bug41867.phpt | 2 | ||||
-rw-r--r-- | ext/simplexml/tests/bug41947.phpt | 2 | ||||
-rwxr-xr-x | ext/soap/tests/bugs/bug36226-2.phpt | 2 | ||||
-rwxr-xr-x | ext/spl/tests/bug40872.phpt | 2 | ||||
-rw-r--r-- | ext/spl/tests/bug41692.phpt | 2 |
8 files changed, 16 insertions, 0 deletions
diff --git a/ext/simplexml/tests/bug40451.phpt b/ext/simplexml/tests/bug40451.phpt index 949dc87575..b86ff62e6a 100644 --- a/ext/simplexml/tests/bug40451.phpt +++ b/ext/simplexml/tests/bug40451.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #40451 (addAttribute() may crash when used with non-existent child node) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug41582.phpt b/ext/simplexml/tests/bug41582.phpt index ac48ea210f..6c4dcb7a5c 100644 --- a/ext/simplexml/tests/bug41582.phpt +++ b/ext/simplexml/tests/bug41582.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #41582 (SimpleXML crashes when accessing newly created element) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug41861.phpt b/ext/simplexml/tests/bug41861.phpt index 07622ebbd3..2b4ce98b1e 100644 --- a/ext/simplexml/tests/bug41861.phpt +++ b/ext/simplexml/tests/bug41861.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #41861 (getNamespaces() returns the namespaces of a node's siblings) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug41867.phpt b/ext/simplexml/tests/bug41867.phpt index f530f95dcc..a8c1b5bd78 100644 --- a/ext/simplexml/tests/bug41867.phpt +++ b/ext/simplexml/tests/bug41867.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #41867 (getName is broken) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug41947.phpt b/ext/simplexml/tests/bug41947.phpt index 7af9ff8e76..93d26e5f65 100644 --- a/ext/simplexml/tests/bug41947.phpt +++ b/ext/simplexml/tests/bug41947.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #41947 (addChild incorrectly registers empty strings as namespaces) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> --FILE-- <?php $xml = simplexml_load_string('<?xml version="1.0" encoding="utf-8"?><root xmlns:myns="http://myns" />'); diff --git a/ext/soap/tests/bugs/bug36226-2.phpt b/ext/soap/tests/bugs/bug36226-2.phpt index 8605f21a72..b0fd43377a 100755 --- a/ext/soap/tests/bugs/bug36226-2.phpt +++ b/ext/soap/tests/bugs/bug36226-2.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #36226 (Inconsistent handling when passing nillable arrays) +--SKIPIF-- +<?php if (!extension_loaded("soap")) die("skip"); ?> --INI-- soap.wsdl_cache_enabled=0 --FILE-- diff --git a/ext/spl/tests/bug40872.phpt b/ext/spl/tests/bug40872.phpt index a48fe74feb..70472c44e9 100755 --- a/ext/spl/tests/bug40872.phpt +++ b/ext/spl/tests/bug40872.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #40872 (inconsistency in offsetSet, offsetExists treatment of string enclosed integers) +--SKIPIF-- +<?php if (!extension_loaded("spl")) die("skip"); ?> --FILE-- <?php class Project { diff --git a/ext/spl/tests/bug41692.phpt b/ext/spl/tests/bug41692.phpt index 1729fd15d3..0369d8a48f 100644 --- a/ext/spl/tests/bug41692.phpt +++ b/ext/spl/tests/bug41692.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #41692 (ArrayObject shows weird behaviour in respect to inheritance) +--SKIPIF-- +<?php if (!extension_loaded("spl")) die("skip"); ?> --FILE-- <?php |