Security update to Drupal 8.4.6
[yaffs-website] / vendor / doctrine / cache / tests / Doctrine / Tests / Common / Cache / ApcuCacheTest.php
diff --git a/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcuCacheTest.php b/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcuCacheTest.php
deleted file mode 100644 (file)
index 27764cd..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-namespace Doctrine\Tests\Common\Cache;
-
-use Doctrine\Common\Cache\ApcuCache;
-
-/**
- * @requires extension apcu
- */
-class ApcuCacheTest extends CacheTest
-{
-    protected function setUp()
-    {
-        if (!ini_get('apc.enable_cli')) {
-            $this->markTestSkipped('APC must be enabled for the CLI with the ini setting apc.enable_cli=1');
-        }
-    }
-
-    protected function _getCacheDriver()
-    {
-        return new ApcuCache();
-    }
-
-    public function testLifetime()
-    {
-        $this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084');
-    }
-}