2019-02-18 14:04:17 -05:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2019-11-26 22:58:07 -05:00
|
|
|
import ttfw_idf
|
2019-02-18 14:04:17 -05:00
|
|
|
|
|
|
|
STATS_TASK_ITERS = 3
|
2021-01-25 21:49:01 -05:00
|
|
|
STATS_TASK_EXPECT = 'Real time stats obtained'
|
2019-02-18 14:04:17 -05:00
|
|
|
|
|
|
|
|
2021-03-12 01:05:17 -05:00
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_GENERIC', target=['esp32', 'esp32c3'])
|
2019-02-18 14:04:17 -05:00
|
|
|
def test_real_time_stats_example(env, extra_data):
|
2021-03-12 01:05:17 -05:00
|
|
|
dut = env.get_dut('real_time_stats', 'examples/system/freertos/real_time_stats')
|
2019-02-18 14:04:17 -05:00
|
|
|
dut.start_app()
|
|
|
|
|
|
|
|
for iteration in range(0, STATS_TASK_ITERS):
|
|
|
|
dut.expect(STATS_TASK_EXPECT)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_real_time_stats_example()
|