mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
ci: increase test_wifi_power_save got ip timeout
This commit is contained in:
@ -1,6 +1,5 @@
|
|||||||
# SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
# SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import pexpect
|
import pexpect
|
||||||
@ -9,7 +8,7 @@ from common_test_methods import get_env_config_variable
|
|||||||
from pytest_embedded import Dut
|
from pytest_embedded import Dut
|
||||||
|
|
||||||
bad_event_str = [
|
bad_event_str = [
|
||||||
'bcn_timout',
|
'bcn_timeout',
|
||||||
'm f probe req l',
|
'm f probe req l',
|
||||||
'abort() was called',
|
'abort() was called',
|
||||||
'Guru Meditation Error',
|
'Guru Meditation Error',
|
||||||
@ -31,7 +30,7 @@ def _run_test(dut: Dut) -> None:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
try:
|
try:
|
||||||
dut.expect(r'got ip: (\d+\.\d+\.\d+\.\d+)[^\d]', timeout=20)
|
dut.expect(r'got ip: (\d+\.\d+\.\d+\.\d+)[^\d]', timeout=30)
|
||||||
log_after_got_ip = dut.expect(pexpect.TIMEOUT, timeout=10).decode()
|
log_after_got_ip = dut.expect(pexpect.TIMEOUT, timeout=10).decode()
|
||||||
if any(s in log_after_got_ip for s in bad_event_str):
|
if any(s in log_after_got_ip for s in bad_event_str):
|
||||||
logging.info('Abnormal connection log:')
|
logging.info('Abnormal connection log:')
|
||||||
|
Reference in New Issue
Block a user