mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-04-04 00:01:49 +00:00
AES: don't do mcrypt unit tests if mcrypt extension is not available
This commit is contained in:
parent
aa0e7347ef
commit
0d6fbb9e30
@ -9,6 +9,10 @@ class Unit_Crypt_AES_McryptTest extends Unit_Crypt_AES_TestCase
|
|||||||
{
|
{
|
||||||
static public function setUpBeforeClass()
|
static public function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
|
if (!extension_loaded('mcrypt')) {
|
||||||
|
self::markTestSkipped('mcrypt extension is not available.');
|
||||||
|
}
|
||||||
|
|
||||||
parent::setUpBeforeClass();
|
parent::setUpBeforeClass();
|
||||||
|
|
||||||
self::ensureConstant('CRYPT_AES_MODE', CRYPT_AES_MODE_MCRYPT);
|
self::ensureConstant('CRYPT_AES_MODE', CRYPT_AES_MODE_MCRYPT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user