From 41e9933e2f93cd3792ee3417e2ede436768e16fe 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 9c0e8cf017..b468557e5b 100644 --- a/examples/openthread/pytest_otbr.py +++ b/examples/openthread/pytest_otbr.py @@ -448,7 +448,7 @@ def test_service_discovery_of_WiFi_device(Init_interface:bool, Init_avahi:bool, 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"' @@ -457,12 +457,12 @@ def test_service_discovery_of_WiFi_device(Init_interface:bool, Init_avahi:bool, 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: