From 214691bce5e95b711d2f558448e97e41a27610c4 Mon Sep 17 00:00:00 2001 From: Tan Yan Quan Date: Wed, 19 Feb 2025 18:58:17 +0800 Subject: [PATCH] feat(openthread): increase CI timeout for dns CLI commands --- examples/openthread/pytest_otbr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/openthread/pytest_otbr.py b/examples/openthread/pytest_otbr.py index 45c1b31fd7..1e753b1051 100644 --- a/examples/openthread/pytest_otbr.py +++ b/examples/openthread/pytest_otbr.py @@ -442,7 +442,7 @@ def test_service_discovery_of_WiFi_device( cli.expect('Done', timeout=10) command = 'dns browse _testxxx._udp.default.service.arpa' - tmp = ocf.get_ouput_string(cli, command, 5) + tmp = ocf.get_ouput_string(cli, command, 10) assert 'Port:12347' not in str(tmp) ocf.restart_avahi() command = 'avahi-publish-service testxxx _testxxx._udp 12347 test=1235 dn="for_ci_br_test"' @@ -451,12 +451,12 @@ def test_service_discovery_of_WiFi_device( ocf.wait(cli, 5) command = 'dns browse _testxxx._udp.default.service.arpa' - tmp = ocf.get_ouput_string(cli, command, 5) + tmp = ocf.get_ouput_string(cli, command, 10) assert 'response for _testxxx' in str(tmp) assert 'Port:12347' in str(tmp) command = 'dns service testxxx _testxxx._udp.default.service.arpa.' - tmp = ocf.get_ouput_string(cli, command, 5) + tmp = ocf.get_ouput_string(cli, command, 10) assert 'response for testxxx' in str(tmp) assert 'Port:12347' in str(tmp) finally: