mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c85d949c1f
Add support for running example_GENERIC tests for C3 on label. Fix examples that fail.
17 lines
400 B
Python
17 lines
400 B
Python
from __future__ import unicode_literals
|
|
|
|
import ttfw_idf
|
|
|
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_GENERIC', target=['esp32', 'esp32c3'])
|
|
def test_examples_asio_ssl(env, extra_data):
|
|
|
|
dut = env.get_dut('asio_ssl_client_server', 'examples/protocols/asio/ssl_client_server')
|
|
dut.start_app()
|
|
|
|
dut.expect('Reply: GET / HTTP/1.1')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test_examples_asio_ssl()
|