Expand test platforms.
1 unresolved thread
1 unresolved thread
Closes #2996055
Merge request reports
Activity
added 1 commit
- bea1930a - More debugging of the memcache drivers and tests
added 4 commits
-
bea1930a...10799157 - 2 commits from branch
project:8.x-2.x
- ffde096d - Expand test platforms.
- 5a7f8ee9 - More debugging of the memcache drivers and tests
-
bea1930a...10799157 - 2 commits from branch
46 55 return $factory->get($bin); 47 56 } 48 57 58 /** 59 * Gets a backend to test; this will get a shared instance set in the object. 60 * 61 * @return \Drupal\Core\Cache\CacheBackendInterface 62 * Cache backend to test. 63 */ 64 protected function getCacheBackend($bin = NULL) { 65 $backend = parent::getCacheBackend($bin); 66 usleep(10000); If this were in
::setUp()
, it'd be fine, because e.g.\Drupal\KernelTests\Core\Cache\DatabaseBackendTest::testGarbageCollection()
does this too. Plenty more tests in core even, grepusleep(
in*Test.php
BUT doing it like this, for every single call, that's definitely fishy
🧟♀️I hear you can reproduce this locally too, even if not 100% of the time. I'd start investigating this locally, because it'll be easier to drop down into lower layers to debug what exactly is going on with
memcached
.
Please register or sign in to reply