Skip apc test when apc is not enabled for CLI
This commit is contained in:
parent
f242e658c3
commit
70c7ee6fc7
1 changed files with 5 additions and 1 deletions
6
tests/lib/cache/apc.php
vendored
6
tests/lib/cache/apc.php
vendored
|
@ -22,10 +22,14 @@
|
|||
|
||||
class Test_Cache_APC extends Test_Cache {
|
||||
public function setUp() {
|
||||
if(!function_exists('apc_store')){
|
||||
if(!extension_loaded('apc')){
|
||||
$this->markTestSkipped('The apc extension is not available.');
|
||||
return;
|
||||
}
|
||||
if(!ini_get('apc.enable_cli') && OC::$CLI){
|
||||
$this->markTestSkipped('apc not available in CLI.');
|
||||
return;
|
||||
}
|
||||
$this->instance=new OC_Cache_APC();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue