Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .build-test-rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@ host/usb:
- if: IDF_VERSION < "5.4.0"
reason: We will support component overriding only in service releases

host/usb/test/target_test/enum:
depends_filepatterns:
- 'host/usb/**'
enable:
- if: SOC_USB_OTG_SUPPORTED == 1 and ENV_VAR_USB_COMP_MANAGED == "yes" and IDF_TARGET not in ["esp32s31"]
reason: Test uses FSLS PHY interface to emulate device attach/detach which the esp32s31 lacks
disable:
- if: IDF_VERSION < "5.4.0"
reason: We will support component overriding only in service releases

# Host tests
.host_test_enable_rules: &host_test_enable_rules
enable:
Expand Down
1 change: 0 additions & 1 deletion host/usb/test/target_test/common/hcd_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "freertos/task.h"
#include "soc/usb_wrap_struct.h"
#include "esp_intr_alloc.h"
#include "esp_err.h"
#include "esp_attr.h"
Expand Down
Loading