Merge branch 'fix/test_script_error_in_bt_example_v5.2' into 'release/v5.2'

Fix/test script error in bt example v5.2(backport v5.2)

See merge request espressif/esp-idf!32976
This commit is contained in:
Wang Meng Yang 2024-08-22 11:39:30 +08:00
commit b7ff472a3f
2 changed files with 10 additions and 2 deletions

View File

@ -141,6 +141,14 @@ examples/bluetooth/esp_ble_mesh/wifi_coexist:
- examples/bluetooth/esp_ble_mesh/common_components/**/*
- components/driver/gpio/**/*
examples/bluetooth/esp_hid_host:
disable_test:
- if: IDF_TARGET in ["esp32c2", "esp32c3", "esp32c5", "esp32c6", "esp32h2", "esp32s3"]
temporary: true
reason: temporarily test esp32
disable:
- if: SOC_BT_SUPPORTED != 1
examples/bluetooth/hci:
<<: *bt_default_depends
enable:

View File

@ -114,8 +114,8 @@ def test_bt_hfp(app_path: str, dut: Tuple[IdfDut, IdfDut]) -> None:
@pytest.mark.parametrize(
'count, app_path, target, config', [
(2,
f'{os.path.join(os.path.dirname(__file__), "bt_hid_mouse_device")}| \
{os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), "../..")), "esp_hid_host")}',
f'{os.path.join(os.path.dirname(__file__), "bt_hid_mouse_device")}|'
f'{os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), "../..")), "esp_hid_host")}',
'esp32|esp32', 'test'),
],
indirect=True,