1# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
2
3components/esp_hw_support/test_apps/dma:
4  disable_test:
5    - if: IDF_TARGET in ["esp32"]
6      temporary: false
7      reason: Neither GDMA nor CPDMA is supported on ESP32
8
9components/esp_hw_support/test_apps/esp_hw_support_unity_tests:
10  disable:
11    - if: SOC_GPSPI_SUPPORTED != 1
12
13components/esp_hw_support/test_apps/etm:
14  disable:
15    - if: SOC_ETM_SUPPORTED != 1
16
17components/esp_hw_support/test_apps/host_test_linux:
18  enable:
19    - if: IDF_TARGET == "linux"
20components/esp_hw_support/test_apps/mspi:
21  disable:
22    - if: IDF_TARGET != "esp32s3"
23
24components/esp_hw_support/test_apps/rtc_clk:
25  disable:
26    - if: IDF_TARGET in ["esp32c6", "esp32h2"]
27      temporary: true
28      reason: Unsupported on C6 for now. TODO IDF-5645
29
30components/esp_hw_support/test_apps/security_support/esp_hw_support_unity_tests:
31  disable_test:
32    - if: IDF_TARGET in ["esp32h2"]
33      temporary: true
34      reason: H2 fails IDF-6898
35