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
9542fd24
Commit
9542fd24
authored
Sep 25, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try to fix: memcache testExpire fails randomly on travis
issue #877
parent
7d2d925d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
CacheTestCase.php
tests/unit/framework/caching/CacheTestCase.php
+6
-1
No files found.
tests/unit/framework/caching/CacheTestCase.php
View file @
9542fd24
...
...
@@ -13,6 +13,7 @@ function time()
namespace
yiiunit\framework\caching
;
use
yii\helpers\StringHelper
;
use
yiiunit\TestCase
;
use
yii\caching\Cache
;
...
...
@@ -147,7 +148,11 @@ abstract class CacheTestCase extends TestCase
sleep
(
1
);
$this
->
assertEquals
(
'expire_test'
,
$cache
->
get
(
'expire_test'
));
// wait a bit more than 2 sec to avoid random test failure
usleep
(
2500000
);
if
(
$_ENV
[
'TRAVIS'
]
&&
substr
(
StringHelper
::
basename
(
get_class
(
$this
)),
0
,
8
)
==
'MemCache'
)
{
sleep
(
3
);
// usleep with 2,5 seconds does not work well on travis and memcache
}
else
{
usleep
(
2500000
);
}
$this
->
assertFalse
(
$cache
->
get
(
'expire_test'
));
}
...
...
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