Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
3b4abfff
Commit
3b4abfff
authored
May 01, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added note to ApcCacheTest
testExpire is failing on PHP 5.3.10
parent
3d3f711d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ApcCacheTest.php
tests/unit/framework/caching/ApcCacheTest.php
+9
-0
No files found.
tests/unit/framework/caching/ApcCacheTest.php
View file @
3b4abfff
...
...
@@ -19,9 +19,17 @@ class ApcCacheTest extends CacheTest
$this
->
markTestSkipped
(
"APC not installed. Skipping."
);
}
if
(
!
ini_get
(
"apc.enabled"
)
||
!
ini_get
(
"apc.enable_cli"
))
{
$this
->
markTestSkipped
(
"APC is installed but not enabled. Skipping."
);
}
if
(
$this
->
_cacheInstance
===
null
)
{
$this
->
_cacheInstance
=
new
ApcCache
();
}
return
$this
->
_cacheInstance
;
}
// TODO there seems to be a problem with APC returning cached value even if it is expired.
// TODO makes test fail on PHP 5.3.10-1ubuntu3.6 with Suhosin-Patch (cli) -- cebe
// TODO http://drupal.org/node/1278292
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment