2020-07-21 04:00:05 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
from __future__ import division, print_function, unicode_literals
|
2020-07-21 04:00:05 -04:00
|
|
|
|
|
|
|
import ttfw_idf
|
|
|
|
|
|
|
|
|
2021-03-12 01:05:17 -05:00
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_GENERIC', target=['esp32', 'esp32s2', 'esp32c3'], ci_target=['esp32'])
|
2020-07-21 04:00:05 -04:00
|
|
|
def test_examples_hello_world(env, extra_data):
|
|
|
|
app_name = 'hello_world'
|
2021-01-25 21:49:01 -05:00
|
|
|
dut = env.get_dut(app_name, 'examples/get-started/hello_world')
|
2020-07-21 04:00:05 -04:00
|
|
|
dut.start_app()
|
|
|
|
res = dut.expect(ttfw_idf.MINIMUM_FREE_HEAP_SIZE_RE)
|
|
|
|
if not res:
|
|
|
|
raise ValueError('Maximum heap size info not found')
|
|
|
|
ttfw_idf.print_heap_size(app_name, dut.app.config_name, dut.TARGET, res[0])
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_examples_hello_world()
|