summaryrefslogtreecommitdiffstats
path: root/tests/lib/cache/apc.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/cache/apc.php')
-rw-r--r--tests/lib/cache/apc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/cache/apc.php b/tests/lib/cache/apc.php
index 34ea968cd54..ae562a11df2 100644
--- a/tests/lib/cache/apc.php
+++ b/tests/lib/cache/apc.php
@@ -21,11 +21,11 @@
*/
class Test_Cache_APC extends Test_Cache {
- function skip() {
- $this->skipUnless(function_exists('apc_store'));
- }
-
public function setUp() {
+ if(!function_exists('apc_store')){
+ $this->markTestSkipped('The apc extension is not available.');
+ return;
+ }
$this->instance=new OC_Cache_APC();
}