diff mbox series

[1/2] Revert "support/testing: TestMdnsd: improve test reliability"

Message ID 20260831205703.3909457-1-romain.naour@smile.fr
State New
Headers show
Series [1/2] Revert "support/testing: TestMdnsd: improve test reliability" | expand

Commit Message

Romain Naour Aug. 31, 2026, 8:57 p.m. UTC
The issue was reproduced in 2026.08-rc3 Gitlab-CI pipeline [1] despite
the fix applied.

[1] https://gitlab.com/buildroot.org/buildroot/-/jobs/16185948555

This reverts commit b4b1de1f7f1865af25f5dc47beac06a37b929c4a.

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 support/testing/tests/package/test_mdnsd.py | 4 ----
 1 file changed, 4 deletions(-)

Comments

Julien Olivain Sept. 1, 2026, 7:50 p.m. UTC | #1
On 31/08/2026 22:57, Romain Naour via buildroot wrote:
> The issue was reproduced in 2026.08-rc3 Gitlab-CI pipeline [1] despite
> the fix applied.
> 
> [1] https://gitlab.com/buildroot.org/buildroot/-/jobs/16185948555
> 
> This reverts commit b4b1de1f7f1865af25f5dc47beac06a37b929c4a.
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>

Series applied to master, thanks.
diff mbox series

Patch

diff --git a/support/testing/tests/package/test_mdnsd.py b/support/testing/tests/package/test_mdnsd.py
index 2637af7c12..214eea7dd9 100644
--- a/support/testing/tests/package/test_mdnsd.py
+++ b/support/testing/tests/package/test_mdnsd.py
@@ -1,5 +1,4 @@ 
 import os
-import time
 
 import infra.basetest
 
@@ -31,9 +30,6 @@  class TestMdnsd(infra.basetest.BRTest):
         # advertises the bundled _http._tcp service from /etc/mdns.d/.
         self.assertRunOk("pidof mdnsd")
 
-        # We wait for mdnsd to be ready...
-        time.sleep(1)
-
         # mdnsd only answers on multicast capable interfaces that are
         # up, so wait for eth0 to get its DHCP address before querying.
         cmd = "while ! ifconfig eth0 | grep -q 'inet addr'; do sleep 1; done"