Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f5e7b commit 80f3410Copy full SHA for 80f3410
src/Symfony/Component/Cache/Tests/Adapter/ApcuAdapterTest.php
@@ -24,6 +24,9 @@ public function createCachePool()
24
if (!function_exists('apcu_fetch') || !ini_get('apc.enabled') || ('cli' === PHP_SAPI && !ini_get('apc.enable_cli'))) {
25
$this->markTestSkipped('APCu extension is required.');
26
}
27
+ if ('\\' === DIRECTORY_SEPARATOR) {
28
+ $this->markTestSkipped('Fails transiently on Windows.');
29
+ }
30
31
return new ApcuAdapter(__CLASS__);
32
0 commit comments