CI: fix connection failures in asio example tests

* Original commit: espressif/esp-idf@b3b71bc8ab
This commit is contained in:
Chen Yudong
2021-05-25 15:02:47 +08:00
committed by gabsuren
parent cc0f2b3cf0
commit cb2375827b
6 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,7 @@ def test_examples_protocol_asio_chat_server(env, extra_data):
# 2. get the server IP address
data = dut1.expect(re.compile(r' IPv4 address: ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)'), timeout=30)
# 3. create tcp client and connect to server
dut1.expect('ASIO engine is up and running', timeout=1)
cli = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
cli.settimeout(30)
cli.connect((data[0], 2222))