2023-01-10 00:59:46 -05:00
|
|
|
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
2022-03-07 22:15:37 -05:00
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
|
|
|
|
|
|
|
|
2022-05-21 15:28:15 -04:00
|
|
|
@pytest.mark.esp32
|
2022-06-16 04:15:34 -04:00
|
|
|
@pytest.mark.esp32c2
|
2022-05-21 15:28:15 -04:00
|
|
|
@pytest.mark.esp32s2
|
|
|
|
@pytest.mark.esp32s3
|
|
|
|
@pytest.mark.esp32c3
|
2022-11-22 04:01:25 -05:00
|
|
|
@pytest.mark.esp32c6
|
2023-01-10 00:59:46 -05:00
|
|
|
@pytest.mark.esp32h2
|
2022-03-07 22:15:37 -05:00
|
|
|
@pytest.mark.generic
|
|
|
|
def test_eventfd(dut: Dut) -> None:
|
|
|
|
|
2022-12-09 03:06:44 -05:00
|
|
|
dut.expect_exact('main_task: Calling app_main()')
|
2022-03-07 22:15:37 -05:00
|
|
|
|
|
|
|
exp_list_5seconds = [
|
|
|
|
'eventfd_example: Select timeouted for 1 times',
|
|
|
|
'eventfd_example: Timer triggerred for 2 times',
|
|
|
|
'eventfd_example: Progress triggerred for 1 times',
|
|
|
|
]
|
|
|
|
|
|
|
|
exp_list_10seconds = [
|
|
|
|
'eventfd_example: Select timeouted for 2 times',
|
|
|
|
'eventfd_example: Timer triggerred for 4 times',
|
|
|
|
'eventfd_example: Progress triggerred for 2 times',
|
|
|
|
]
|
|
|
|
|
|
|
|
logging.info('Expecting:{}{}'.format(os.linesep, os.linesep.join(exp_list_5seconds)))
|
|
|
|
for exp in exp_list_5seconds:
|
|
|
|
dut.expect_exact(exp)
|
|
|
|
|
|
|
|
logging.info('Expecting:{}{}'.format(os.linesep, os.linesep.join(exp_list_10seconds)))
|
|
|
|
for exp in exp_list_10seconds:
|
|
|
|
dut.expect_exact(exp)
|