diff options
author | Pierre Joye <pajoye@php.net> | 2011-09-06 06:47:12 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-09-06 06:47:12 +0000 |
commit | 09b6360c71e6bb7635713874f92656f6a60b47c8 (patch) | |
tree | 9fcb661521373744d992b4358c3a5ec726b0c2c9 /ext/mcrypt/tests | |
parent | 6be168b22d2affd812bed34129ce9cdfb0e1a14f (diff) | |
download | php-git-09b6360c71e6bb7635713874f92656f6a60b47c8.tar.gz |
- add skipif
Diffstat (limited to 'ext/mcrypt/tests')
-rw-r--r-- | ext/mcrypt/tests/bug55169.phpt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/mcrypt/tests/bug55169.phpt b/ext/mcrypt/tests/bug55169.phpt index 7bddd50875..bebcd675c8 100644 --- a/ext/mcrypt/tests/bug55169.phpt +++ b/ext/mcrypt/tests/bug55169.phpt @@ -1,8 +1,9 @@ --TEST--
-mcrypt_create_iv
-https://bugs.php.net/bug.php?id=55169
+mcrypt_create_iv https://bugs.php.net/bug.php?id=55169
--CREDIT--
Ryan Biesemeyer <ryan@yaauie.com>
+--SKIPIF--
+<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
--FILE--
<?php
for( $i=1; $i<=64; $i = $i*2 ){
|