mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 20:24:32 +02:00
tools/test_apps: run tests which don't need JTAG on Example_GENERIC
This commit is contained in:
committed by
Fu Hanxi
parent
eda42035d2
commit
e32885d699
@@ -315,7 +315,6 @@ example_test_016:
|
||||
|
||||
test_app_test_001:
|
||||
extends: .test_app_template
|
||||
parallel: 4
|
||||
tags:
|
||||
- ESP32
|
||||
- test_jtag_arm
|
||||
@@ -324,7 +323,6 @@ test_app_test_001:
|
||||
- $CI_PROJECT_DIR/tools/test_apps/system/*/*.log
|
||||
variables:
|
||||
SETUP_TOOLS: "1"
|
||||
PYTHON_VER: 3
|
||||
|
||||
test_app_test_002:
|
||||
extends: .test_app_template
|
||||
@@ -340,9 +338,12 @@ test_app_test_003:
|
||||
|
||||
test_app_test_004:
|
||||
extends: .test_app_template
|
||||
parallel: 4
|
||||
tags:
|
||||
- ESP32S2
|
||||
- ESP32
|
||||
- Example_GENERIC
|
||||
variables:
|
||||
SETUP_TOOLS: "1"
|
||||
|
||||
component_ut_test_001:
|
||||
extends: .component_ut_32_template
|
||||
|
@@ -252,7 +252,7 @@ def panic_test(**kwargs):
|
||||
|
||||
if 'additional_duts' not in kwargs:
|
||||
kwargs['additional_duts'] = PANIC_TEST_DUT_DICT
|
||||
return ttfw_idf.idf_custom_test(app=PanicTestApp, env_tag="test_jtag_arm", **kwargs)
|
||||
return ttfw_idf.idf_custom_test(app=PanicTestApp, env_tag="Example_GENERIC", **kwargs)
|
||||
|
||||
|
||||
def get_dut(env, app_config_name, test_name, qemu_wdt_enable=False):
|
||||
|
@@ -6,7 +6,7 @@ import ttfw_idf
|
||||
from tiny_test_fw import Utility
|
||||
|
||||
|
||||
@ttfw_idf.idf_custom_test(env_tag="test_jtag_arm", group="test-apps")
|
||||
@ttfw_idf.idf_custom_test(env_tag="Example_GENERIC", group="test-apps")
|
||||
def test_startup(env, extra_data):
|
||||
config_files = glob.glob(os.path.join(os.path.dirname(__file__), "sdkconfig.ci.*"))
|
||||
config_names = [os.path.basename(s).replace("sdkconfig.ci.", "") for s in config_files]
|
||||
|
Reference in New Issue
Block a user