You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -360,13 +404,16 @@ function testWatcherRegistrationAndCancellationInfo($type, $args)
360
404
functiontestNoMemoryLeak($type, $args)
361
405
{
362
406
if ($this->getTestResultObject()->getCollectCodeCoverageInformation()) {
363
-
$this->markTestSkipped("Cannot run this test with code coverage active [code coverage consumes memory which makes it impossible to rely on memory_get_usage()]");
364
-
}
407
+
$this->markTestSkipped("Cannot run this test with code coverage active [code coverage consumes memory which makes it impossible to rely on memory_get_usage()]");
408
+
}
365
409
366
410
$runs = 2000;
367
411
368
412
if ($type === "onSignal") {
369
413
$this->testSignalCapability();
414
+
if (!\extension_loaded("posix")) {
415
+
$this->markTestSkipped("ext/posix required to test signal handlers");
416
+
}
370
417
}
371
418
372
419
$this->start(function(Driver$loop) use ($type, $args, $runs) {
0 commit comments