Skip to content

Commit

Permalink
Merge pull request #1453 from sjinks/issue-1449
Browse files Browse the repository at this point in the history
Fix #1449
  • Loading branch information
Phalcon committed Oct 28, 2013
2 parents 79570ec + cce748c commit e372a4d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions unit-tests/CacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,11 @@ protected function _prepareApc()
return false;
}

if (ini_get('apc.enable_cli') != 1) {
$this->markTestSkipped('apc.enable_cli must be set to 1');
return false;
}

return true;
}

Expand Down

0 comments on commit e372a4d

Please sign in to comment.