diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-07-25 03:48:26 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-07-25 03:48:26 +0200 |
commit | 75e93d041deb301d3a69f35bc43a94b158fa5440 (patch) | |
tree | f14c39108669500b02c9a8ca5c43d267799e9252 /tests/lib/memcache/apc.php | |
parent | ff86b6f1346be9eb90ad82ae49742d22d4ee3e9d (diff) | |
parent | 25003fb21380b71f7c098b8e27263031103e1655 (diff) | |
download | nextcloud-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.php | 4 |
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()); } } |