From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Tue, 26 Aug 2025 07:05:16 +0200
Subject: Test failing often on debci infrastructure

---
 src/Symfony/Component/Process/Tests/ProcessTest.php          | 1 +
 src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php
index 64fc876..79bf012 100644
--- a/src/Symfony/Component/Process/Tests/ProcessTest.php
+++ b/src/Symfony/Component/Process/Tests/ProcessTest.php
@@ -1599,6 +1599,7 @@ class ProcessTest extends TestCase
 
     public function testWaitStoppedDeadProcess()
     {
+        $this->markTestSkipped('Test failing often on riscv64 and debci infrastructure');
         $process = $this->getProcess(self::$phpBin.' '.__DIR__.'/ErrorProcessInitiator.php -e '.self::$phpBin);
         $process->start();
         $process->setTimeout(2);
diff --git a/src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php b/src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php
index 1d29601..98149cb 100644
--- a/src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php
+++ b/src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php
@@ -69,6 +69,7 @@ class StopwatchEventTest extends TestCase
 
     public function testDuration()
     {
+        $this->markTestSkipped('Test failing often on debci infrastructure');
         $event = new StopwatchEvent(microtime(true) * 1000);
         $event->start();
         usleep(200000);
@@ -106,6 +107,7 @@ class StopwatchEventTest extends TestCase
 
     public function testDurationWithMultipleStarts()
     {
+        $this->markTestSkipped('Test failing often on debci infrastructure');
         $event = new StopwatchEvent(microtime(true) * 1000);
         $event->start();
         usleep(100000);
