1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
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
Forwarded: not-needed
---
.../Component/Form/Tests/Extension/Core/Type/ExtendedChoiceTypeTest.php | 1 +
src/Symfony/Component/Process/Tests/ProcessTest.php | 1 +
src/Symfony/Component/Stopwatch/Tests/StopwatchEventTest.php | 2 ++
3 files changed, 4 insertions(+)
diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/ExtendedChoiceTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/ExtendedChoiceTypeTest.php
index b449be4..24abd15 100644
--- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/ExtendedChoiceTypeTest.php
+++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/ExtendedChoiceTypeTest.php
@@ -40,6 +40,7 @@ class ExtendedChoiceTypeTest extends TestCase
#[DataProvider('provideTestedTypes')]
public function testChoiceLoaderIsOverridden($type)
{
+ $this->markTestSkipped('Test currently failing on debci infrastructure (amd64, arm64, and riscv64)');
LazyChoiceTypeExtension::$extendedType = $type;
$factory = Forms::createFormFactoryBuilder()
->addTypeExtension(new LazyChoiceTypeExtension())
diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php
index db56c76..071a667 100644
--- a/src/Symfony/Component/Process/Tests/ProcessTest.php
+++ b/src/Symfony/Component/Process/Tests/ProcessTest.php
@@ -1567,6 +1567,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 2f697c3..cb17fd8 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);
|