diff options
author | Joas Schilling <coding@schilljs.com> | 2017-01-05 10:51:17 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-01-05 10:58:34 +0100 |
commit | bf043deba39af2b7586b3617aa1bc534df98b6ee (patch) | |
tree | d6749cf7c21180a1161a84133ffbb14c6f0c390f /tests/lib/Memcache | |
parent | 6a0f0403d01dc6a889157b446edef73f9af58540 (diff) | |
download | nextcloud-server-bf043deba39af2b7586b3617aa1bc534df98b6ee.tar.gz nextcloud-server-bf043deba39af2b7586b3617aa1bc534df98b6ee.zip |
Kill APC because it requires PHP 5.4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Memcache')
-rw-r--r-- | tests/lib/Memcache/APCTest.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/lib/Memcache/APCTest.php b/tests/lib/Memcache/APCTest.php deleted file mode 100644 index 4bd7e62b94a..00000000000 --- a/tests/lib/Memcache/APCTest.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -/** - * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -namespace Test\Memcache; - -class APCTest extends Cache { - protected function setUp() { - parent::setUp(); - - if(!\OC\Memcache\APC::isAvailable()) { - $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($this->getUniqueID()); - } -} |