summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/libraries/Encrypt_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-08-22 12:19:24 +0200
committerAndrey Andreev <narf@devilix.net>2016-08-22 12:19:24 +0200
commitc95df51c90dc9506ec9a37a43d87238965210550 (patch)
treefdb7acd49278d8294395a051d1577ede3defaecf /tests/codeigniter/libraries/Encrypt_test.php
parent549a601bac3b1467168e0bb7b5642ba7fc59c35e (diff)
Skip mcrypt-related testcases on PHP 7.1
ext/mcrypt is deprecated and the test cases in question trigger E_DEPRECATED messages as a result.
Diffstat (limited to 'tests/codeigniter/libraries/Encrypt_test.php')
-rw-r--r--tests/codeigniter/libraries/Encrypt_test.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/codeigniter/libraries/Encrypt_test.php b/tests/codeigniter/libraries/Encrypt_test.php
index ced763301..adbca31b2 100644
--- a/tests/codeigniter/libraries/Encrypt_test.php
+++ b/tests/codeigniter/libraries/Encrypt_test.php
@@ -10,6 +10,10 @@ class Encrypt_test extends CI_TestCase {
{
return;
}
+ elseif (version_compare(PHP_VERSION, '7.1.0-alpha', '>='))
+ {
+ return $this->markTestSkipped('ext/mcrypt is deprecated since PHP 7.1 and will generate notices here.');
+ }
$this->encrypt = new Mock_Libraries_Encrypt();
$this->ci_instance_var('encrypt', $this->encrypt);
@@ -72,4 +76,4 @@ class Encrypt_test extends CI_TestCase {
$this->assertEquals('cfb', $this->encrypt->get_mode());
}
-} \ No newline at end of file
+}