diff options
author | Antony Dovgal <tony2001@php.net> | 2007-04-12 12:29:48 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-04-12 12:29:48 +0000 |
commit | c668dc0a26ee39d502a42fb5cdf38d46d01cacc5 (patch) | |
tree | cca413973e7d42a018f266f47968bcb21824ac2d | |
parent | 9788d96b0cfc402a117b2cf9d3e5f11f7a8da48d (diff) | |
download | php-git-c668dc0a26ee39d502a42fb5cdf38d46d01cacc5.tar.gz |
add missing SKIPIF sections
-rwxr-xr-x | ext/reflection/tests/008.phpt | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/009.phpt | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/bug37816.phpt | 2 | ||||
-rw-r--r-- | ext/reflection/tests/bug38217.phpt | 4 | ||||
-rw-r--r-- | ext/reflection/tests/bug38653.phpt | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/bug38942.phpt | 2 | ||||
-rw-r--r-- | ext/reflection/tests/bug39001.phpt | 2 | ||||
-rw-r--r-- | ext/reflection/tests/bug39067.phpt | 2 | ||||
-rw-r--r-- | ext/reflection/tests/bug39884.phpt | 2 | ||||
-rw-r--r-- | ext/reflection/tests/bug40431.phpt | 2 |
10 files changed, 21 insertions, 1 deletions
diff --git a/ext/reflection/tests/008.phpt b/ext/reflection/tests/008.phpt index 2abdcdb57b..c5ee5b33e1 100755 --- a/ext/reflection/tests/008.phpt +++ b/ext/reflection/tests/008.phpt @@ -1,5 +1,7 @@ --TEST-- ReflectionMethod::__construct() tests +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/009.phpt b/ext/reflection/tests/009.phpt index e96b21ebaf..bfe37c52f9 100755 --- a/ext/reflection/tests/009.phpt +++ b/ext/reflection/tests/009.phpt @@ -1,5 +1,7 @@ --TEST-- ReflectionFunction basic tests +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug37816.phpt b/ext/reflection/tests/bug37816.phpt index 18a49046dc..1121d54188 100755 --- a/ext/reflection/tests/bug37816.phpt +++ b/ext/reflection/tests/bug37816.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #37816 (ReflectionProperty does not throw exception when accessing protected attribute) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug38217.phpt b/ext/reflection/tests/bug38217.phpt index 55e0c46644..590d7f79eb 100644 --- a/ext/reflection/tests/bug38217.phpt +++ b/ext/reflection/tests/bug38217.phpt @@ -1,5 +1,7 @@ --TEST-- -#38217 (ReflectionClass::newInstanceArgs() tries to allocate too much memory) +Bug #38217 (ReflectionClass::newInstanceArgs() tries to allocate too much memory) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug38653.phpt b/ext/reflection/tests/bug38653.phpt index 68781d2aba..0e6fcd035f 100644 --- a/ext/reflection/tests/bug38653.phpt +++ b/ext/reflection/tests/bug38653.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #38653 (memory leak in ReflectionClass::getConstant()) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug38942.phpt b/ext/reflection/tests/bug38942.phpt index 817190c997..a02f596aff 100755 --- a/ext/reflection/tests/bug38942.phpt +++ b/ext/reflection/tests/bug38942.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #38942 (Double old-style-ctor inheritance) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php class foo { diff --git a/ext/reflection/tests/bug39001.phpt b/ext/reflection/tests/bug39001.phpt index 1ed675f029..59bab0291a 100644 --- a/ext/reflection/tests/bug39001.phpt +++ b/ext/reflection/tests/bug39001.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #39001 (ReflectionProperty returns incorrect declaring class for protected properties) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug39067.phpt b/ext/reflection/tests/bug39067.phpt index 8a7a6044e1..020ae74e41 100644 --- a/ext/reflection/tests/bug39067.phpt +++ b/ext/reflection/tests/bug39067.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #39067 (getDeclaringClass() and private properties) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php diff --git a/ext/reflection/tests/bug39884.phpt b/ext/reflection/tests/bug39884.phpt index dbc57ee521..8022954bf2 100644 --- a/ext/reflection/tests/bug39884.phpt +++ b/ext/reflection/tests/bug39884.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #39884 (ReflectionParameter::getClass() throws exception for type hint self) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php class stubParamTest diff --git a/ext/reflection/tests/bug40431.phpt b/ext/reflection/tests/bug40431.phpt index 6e6e4c5eb1..2f2b2d932e 100644 --- a/ext/reflection/tests/bug40431.phpt +++ b/ext/reflection/tests/bug40431.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #40431 (dynamic properties may cause crash in ReflectionProperty methods) +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> --FILE-- <?php |