2018-09-04 02:20:29 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2019-11-27 03:58:07 +00:00
|
|
|
import ttfw_idf
|
2018-09-04 02:20:29 +00:00
|
|
|
|
|
|
|
|
2019-11-27 03:58:07 +00:00
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_WIFI')
|
2018-09-04 02:20:29 +00:00
|
|
|
def test_examples_system_cpp_exceptions(env, extra_data):
|
2019-11-27 03:58:07 +00:00
|
|
|
dut = env.get_dut('cpp_exceptions_example', 'examples/system/cpp_exceptions', dut_class=ttfw_idf.ESP32DUT)
|
2018-09-04 02:20:29 +00:00
|
|
|
# start test
|
|
|
|
dut.start_app()
|
|
|
|
lines = ['app_main starting',
|
|
|
|
'In constructor, arg=42',
|
|
|
|
'In constructor, arg=0',
|
|
|
|
'In destructor, m_arg=42',
|
|
|
|
'Exception caught: Exception in constructor',
|
|
|
|
'app_main done'
|
2018-12-04 07:32:48 +00:00
|
|
|
]
|
2018-09-04 02:20:29 +00:00
|
|
|
for line in lines:
|
|
|
|
dut.expect(line, timeout=2)
|
|
|
|
|
2018-12-04 07:32:48 +00:00
|
|
|
|
2018-09-04 02:20:29 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
test_examples_system_cpp_exceptions()
|