From dbae5c93f0424f3fd625079d21fd64e8e8f280e6 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sun, 20 Oct 2019 21:07:49 +0200 Subject: [PATCH] examples: fix loadable elf test --- examples/get-started/hello_world/loadable_elf_example_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/get-started/hello_world/loadable_elf_example_test.py b/examples/get-started/hello_world/loadable_elf_example_test.py index 71c2b60cd3..61972d3652 100644 --- a/examples/get-started/hello_world/loadable_elf_example_test.py +++ b/examples/get-started/hello_world/loadable_elf_example_test.py @@ -120,7 +120,7 @@ def test_examples_loadable_elf(env, extra_data): idf_path = os.environ['IDF_PATH'] rel_project_path = os.path.join('examples', 'get-started', 'hello_world') proj_path = os.path.join(idf_path, rel_project_path) - example = IDF.Example(rel_project_path) + example = IDF.Example(rel_project_path, target="esp32") sdkconfig = example.get_sdkconfig() elf_path = os.path.join(example.get_binary_path(rel_project_path), 'hello-world.elf') esp_log_path = os.path.join(proj_path, 'esp.log')