diff options
| author | Hannes Magnusson <bjori@php.net> | 2006-06-27 00:09:43 +0000 |
|---|---|---|
| committer | Hannes Magnusson <bjori@php.net> | 2006-06-27 00:09:43 +0000 |
| commit | aaa1d62614b1ffab4c7f698fa1f3a2c4746b379f (patch) | |
| tree | 932c523bfe9b142bc6e33a22e233bd70f7216842 /ext/simplexml | |
| parent | 000957818e31fbe25cf22dcbb6e58956b0699f54 (diff) | |
| download | php-git-aaa1d62614b1ffab4c7f698fa1f3a2c4746b379f.tar.gz | |
MFH: fix/add SKIPIF
Diffstat (limited to 'ext/simplexml')
| -rwxr-xr-x | ext/simplexml/tests/bug35785.phpt | 2 | ||||
| -rw-r--r-- | ext/simplexml/tests/bug36611.phpt | 2 | ||||
| -rwxr-xr-x | ext/simplexml/tests/bug37565.phpt | 2 | ||||
| -rwxr-xr-x | ext/simplexml/tests/profile12.phpt | 2 | ||||
| -rwxr-xr-x | ext/simplexml/tests/profile13.phpt | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/ext/simplexml/tests/bug35785.phpt b/ext/simplexml/tests/bug35785.phpt index de65a19565..096ab7a681 100755 --- a/ext/simplexml/tests/bug35785.phpt +++ b/ext/simplexml/tests/bug35785.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #35785 (SimpleXML memory read error) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) print "skip"; ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug36611.phpt b/ext/simplexml/tests/bug36611.phpt index fdfed0d019..835e926fe5 100644 --- a/ext/simplexml/tests/bug36611.phpt +++ b/ext/simplexml/tests/bug36611.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #36611 (assignment to SimpleXML object attribute changes argument type to string) +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) print "skip"; ?> --FILE-- <?php diff --git a/ext/simplexml/tests/bug37565.phpt b/ext/simplexml/tests/bug37565.phpt index 85b50eb972..e04f9577f1 100755 --- a/ext/simplexml/tests/bug37565.phpt +++ b/ext/simplexml/tests/bug37565.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #37565 Using reflection::export with simplexml causing a crash +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) print "skip"; ?> --FILE-- <?php diff --git a/ext/simplexml/tests/profile12.phpt b/ext/simplexml/tests/profile12.phpt index 93b65bcaac..51a0d35531 100755 --- a/ext/simplexml/tests/profile12.phpt +++ b/ext/simplexml/tests/profile12.phpt @@ -1,5 +1,7 @@ --TEST-- SimpleXML [profile]: Accessing namespaced root and non namespaced children +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) print "skip"; ?> --FILE-- <?php diff --git a/ext/simplexml/tests/profile13.phpt b/ext/simplexml/tests/profile13.phpt index f61960b0fa..2ae89e7449 100755 --- a/ext/simplexml/tests/profile13.phpt +++ b/ext/simplexml/tests/profile13.phpt @@ -1,5 +1,7 @@ --TEST-- SimpleXML [profile]: Accessing by namespace prefix +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) print "skip"; ?> --FILE-- <?php |
