diff options
| author | Antony Dovgal <tony2001@php.net> | 2007-07-16 13:29:47 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2007-07-16 13:29:47 +0000 |
| commit | b355edcc3abcd3745a48a1c91980833a03e1ac88 (patch) | |
| tree | b692ae46990c385afa29dee4c51cfedb9713358d | |
| parent | 2399b208db3f471461207d15b0e83c1995d2757c (diff) | |
| download | php-git-b355edcc3abcd3745a48a1c91980833a03e1ac88.tar.gz | |
MFH
| -rw-r--r-- | ext/xmlwriter/tests/010.phpt | 4 | ||||
| -rw-r--r-- | ext/xmlwriter/tests/bug39504.phpt | 4 | ||||
| -rw-r--r-- | ext/xmlwriter/tests/bug41287.phpt | 4 | ||||
| -rw-r--r-- | ext/xmlwriter/tests/bug41326.phpt | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/ext/xmlwriter/tests/010.phpt b/ext/xmlwriter/tests/010.phpt index 89439dc222..9f066a7c3e 100644 --- a/ext/xmlwriter/tests/010.phpt +++ b/ext/xmlwriter/tests/010.phpt @@ -1,5 +1,9 @@ --TEST-- xmlwriter_start/end_attribute() +--SKIPIF-- +<?php +if (!extension_loaded("xmlwriter")) die("skip"); +?> --FILE-- <?php diff --git a/ext/xmlwriter/tests/bug39504.phpt b/ext/xmlwriter/tests/bug39504.phpt index 669c77ee24..af97f81ed5 100644 --- a/ext/xmlwriter/tests/bug39504.phpt +++ b/ext/xmlwriter/tests/bug39504.phpt @@ -1,5 +1,9 @@ --TEST-- Bug #39504 (xmlwriter_write_dtd_entity() creates Attlist tag, not enity) +--SKIPIF-- +<?php +if (!extension_loaded("xmlwriter")) die("skip"); +?> --FILE-- <?php diff --git a/ext/xmlwriter/tests/bug41287.phpt b/ext/xmlwriter/tests/bug41287.phpt index 106ac3a3ec..0612b21f15 100644 --- a/ext/xmlwriter/tests/bug41287.phpt +++ b/ext/xmlwriter/tests/bug41287.phpt @@ -1,5 +1,9 @@ --TEST-- Bug #41287 (Namespace functions don't allow xmlns defintion to be optional) +--SKIPIF-- +<?php +if (!extension_loaded("xmlwriter")) die("skip"); +?> --FILE-- <?php diff --git a/ext/xmlwriter/tests/bug41326.phpt b/ext/xmlwriter/tests/bug41326.phpt index d7054c81b0..e4eaf79a10 100644 --- a/ext/xmlwriter/tests/bug41326.phpt +++ b/ext/xmlwriter/tests/bug41326.phpt @@ -1,5 +1,9 @@ --TEST-- Bug #41287 (Writing empty tags with Xmlwriter::WriteElement[ns]) +--SKIPIF-- +<?php +if (!extension_loaded("xmlwriter")) die("skip"); +?> --FILE-- <?php $xml = new XmlWriter(); |
