2019-10-20 18:55:11 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import glob
|
2020-01-27 11:12:49 +00:00
|
|
|
import ttfw_idf
|
|
|
|
from tiny_test_fw import Utility
|
2019-10-20 18:55:11 +00:00
|
|
|
|
|
|
|
|
2020-01-29 09:20:46 +00:00
|
|
|
@ttfw_idf.idf_custom_test(env_tag="test_jtag_arm", group="test-apps")
|
2019-10-20 18:55:11 +00:00
|
|
|
def test_startup(env, extra_data):
|
|
|
|
config_files = glob.glob(os.path.join(os.path.dirname(__file__), "sdkconfig.ci.*"))
|
2020-01-27 11:12:49 +00:00
|
|
|
config_names = [os.path.basename(s).replace("sdkconfig.ci.", "") for s in config_files]
|
2019-10-20 18:55:11 +00:00
|
|
|
for name in config_names:
|
|
|
|
Utility.console_log("Checking config \"{}\"... ".format(name), end="")
|
2020-01-29 09:20:46 +00:00
|
|
|
dut = env.get_dut("startup", "tools/test_apps/system/startup", app_config_name=name)
|
2019-10-20 18:55:11 +00:00
|
|
|
dut.start_app()
|
|
|
|
dut.expect("app_main running")
|
|
|
|
env.close_dut(dut.name)
|
|
|
|
Utility.console_log("done")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_startup()
|