summaryrefslogtreecommitdiffstats
path: root/tests/lib/memcache/apc.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-07-25 03:48:26 +0200
committerAndreas Fischer <bantu@owncloud.com>2013-07-25 03:48:26 +0200
commit75e93d041deb301d3a69f35bc43a94b158fa5440 (patch)
treef14c39108669500b02c9a8ca5c43d267799e9252 /tests/lib/memcache/apc.php
parentff86b6f1346be9eb90ad82ae49742d22d4ee3e9d (diff)
parent25003fb21380b71f7c098b8e27263031103e1655 (diff)
downloadnextcloud-server-75e93d041deb301d3a69f35bc43a94b158fa5440.tar.gz
nextcloud-server-75e93d041deb301d3a69f35bc43a94b158fa5440.zip
Merge pull request #3887 from owncloud/apc_user_cache
The APC User Cache doesn't return the cache_list anymore * owncloud/apc_user_cache: Add ACPu memory cache
Diffstat (limited to 'tests/lib/memcache/apc.php')
-rw-r--r--tests/lib/memcache/apc.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/memcache/apc.php b/tests/lib/memcache/apc.php
index 6b2a49470ba..e5d753a4fa5 100644
--- a/tests/lib/memcache/apc.php
+++ b/tests/lib/memcache/apc.php
@@ -15,6 +15,10 @@ class APC extends Cache {
$this->markTestSkipped('The apc extension is not available.');
return;
}
+ if(\OC\Memcache\APCu::isAvailable()) {
+ $this->markTestSkipped('The apc extension is emulated by ACPu.');
+ return;
+ }
$this->instance=new \OC\Memcache\APC(uniqid());
}
}