mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 04:59:55 +00:00 
			
		
		
		
	change(test_utils): moved test_utils component to tools/test_apps/components/
This commit is contained in:
		| @@ -231,6 +231,7 @@ | |||||||
|  |  | ||||||
| ## Note: owners here should be the same as the owners for the same example subdir, above | ## Note: owners here should be the same as the owners for the same example subdir, above | ||||||
| /tools/test_apps/build_system/          @esp-idf-codeowners/build-config | /tools/test_apps/build_system/          @esp-idf-codeowners/build-config | ||||||
|  | /tools/test_apps/components/test_utils/ @esp-idf-codeowners/peripherals @esp-idf-codeowners/system | ||||||
| /tools/test_apps/configs/               @esp-idf-codeowners/system | /tools/test_apps/configs/               @esp-idf-codeowners/system | ||||||
| /tools/test_apps/linux_compatible/      @esp-idf-codeowners/system | /tools/test_apps/linux_compatible/      @esp-idf-codeowners/system | ||||||
| /tools/test_apps/peripherals/           @esp-idf-codeowners/peripherals | /tools/test_apps/peripherals/           @esp-idf-codeowners/peripherals | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on esp_pm | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on esp_pm | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(jpeg_test) | project(jpeg_test) | ||||||
|   | |||||||
| @@ -1,3 +1,3 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|     "$ENV{IDF_PATH}/components/driver/test_apps/components" |     "$ENV{IDF_PATH}/components/driver/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|     "$ENV{IDF_PATH}/components/driver/test_apps/components" |     "$ENV{IDF_PATH}/components/driver/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sdmmc/components/sdmmc_tests") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sdmmc/components/sdmmc_tests") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   test_driver_utils: |   test_driver_utils: | ||||||
|     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils |     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils | ||||||
|   spi_bench_mark: |   spi_bench_mark: | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   test_driver_utils: |   test_driver_utils: | ||||||
|     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils |     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils | ||||||
|   spi_bench_mark: |   spi_bench_mark: | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   test_driver_utils: |   test_driver_utils: | ||||||
|     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils |     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   test_driver_utils: |   test_driver_utils: | ||||||
|     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils |     path: ${IDF_PATH}/components/driver/test_apps/components/test_driver_utils | ||||||
|   espressif/esp_serial_slave_link: "^1.1.0" |   espressif/esp_serial_slave_link: "^1.1.0" | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
|   | |||||||
| @@ -1,3 +1,3 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(rs485_test) | project(rs485_test) | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(uart_test) | project(uart_test) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.5) | cmake_minimum_required(VERSION 3.5) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(uhci_test) | project(uhci_test) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.5) | cmake_minimum_required(VERSION 3.5) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(esp_eth_test) | project(esp_eth_test) | ||||||
|   | |||||||
| @@ -9,6 +9,6 @@ list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfi | |||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| project(test_esp_event) | project(test_esp_event) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS | list(APPEND EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components")    # For test_utils component |     "$ENV{IDF_PATH}/tools/test_apps/components")    # For test_utils component | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on | ||||||
| # esptool_py and esp_psram as we set CONFIG_ESPTOOLPY_... and CONFIG_SPIRAM_... options. | # esptool_py and esp_psram as we set CONFIG_ESPTOOLPY_... and CONFIG_SPIRAM_... options. | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -8,6 +8,6 @@ list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfi | |||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| project(wakeup_tests) | project(wakeup_tests) | ||||||
|   | |||||||
| @@ -1,3 +1,3 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -8,6 +8,6 @@ list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfi | |||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| project(test_esp_system_unity_tests) | project(test_esp_system_unity_tests) | ||||||
|   | |||||||
| @@ -7,4 +7,4 @@ dependencies: | |||||||
|   tee_sec_storage: |   tee_sec_storage: | ||||||
|     path: ${IDF_PATH}/components/esp_tee/subproject/components/tee_sec_storage |     path: ${IDF_PATH}/components/esp_tee/subproject/components/tee_sec_storage | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -5,7 +5,7 @@ list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfi | |||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(esp_timer_test) | project(esp_timer_test) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -7,7 +7,7 @@ include($ENV{IDF_PATH}/tools/cmake/project.cmake) | |||||||
| #   - test_utils component | #   - test_utils component | ||||||
| #   - the different test types (e.g., kernel, port, performance, ...) that are organized as components | #   - the different test types (e.g., kernel, port, performance, ...) that are organized as components | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|     "./kernel" |     "./kernel" | ||||||
|     "./misc" |     "./misc" | ||||||
|     "./performance" |     "./performance" | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   ccomp_timer: "^1.0.0" |   ccomp_timer: "^1.0.0" | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| #"Trim" the build. Include the minimal set of components, main, and anything it depends on. | #"Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components" | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|                          "../common") |                          "../common") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components" | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|                          "../common") |                          "../common") | ||||||
|  |  | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| project(newlib_test) | project(newlib_test) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main mbedtls) | set(COMPONENTS main mbedtls) | ||||||
|  |  | ||||||
| list(APPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers") | list(APPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers") | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| # CMakeLists in this exact order for cmake to work correctly | # CMakeLists in this exact order for cmake to work correctly | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # set(BOOT_DIR "$ENV{IDF_PATH}/components/nvs_flash/bootloader_test/bootloader_components/nvs_bootloader") | # set(BOOT_DIR "$ENV{IDF_PATH}/components/nvs_flash/bootloader_test/bootloader_components/nvs_bootloader") | ||||||
| # set(BOOT_TEST_DIR "$ENV{IDF_PATH}/components/nvs_flash/bootloader_test/bootloader_components/nvs_bootloader_test") | # set(BOOT_TEST_DIR "$ENV{IDF_PATH}/components/nvs_flash/bootloader_test/bootloader_components/nvs_bootloader_test") | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -8,6 +8,6 @@ include($ENV{IDF_PATH}/tools/cmake/project.cmake) | |||||||
|  |  | ||||||
| set(COMPONENTS main esp_psram) | set(COMPONENTS main esp_psram) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components")   # For test_utils component | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components")   # For test_utils component | ||||||
|  |  | ||||||
| project(pthread_psram_tests) | project(pthread_psram_tests) | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| # CMakeLists in this exact order for cmake to work correctly | # CMakeLists in this exact order for cmake to work correctly | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on | ||||||
| # esptool_py as we set CONFIG_ESPTOOLPY_... options. | # esptool_py as we set CONFIG_ESPTOOLPY_... options. | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ include($ENV{IDF_PATH}/tools/cmake/project.cmake) | |||||||
| set(COMPONENTS main esp_psram esptool_py) | set(COMPONENTS main esp_psram esptool_py) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
|     "$ENV{IDF_PATH}/components/spi_flash/test_apps/components" |     "$ENV{IDF_PATH}/components/spi_flash/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on esp_psram | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. We also depend on esp_psram | ||||||
| # as we set CONFIG_SPIRAM_... options. | # as we set CONFIG_SPIRAM_... options. | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #This is the project CMakeLists.txt file for the test subproject | #This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| set(COMPONENTS main) | set(COMPONENTS main) | ||||||
|  |  | ||||||
| include($ENV{IDF_PATH}/tools/cmake/project.cmake) | include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) | |||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS | set(EXTRA_COMPONENT_DIRS | ||||||
|     "$ENV{IDF_PATH}/tools/unit-test-app/components" |     "$ENV{IDF_PATH}/tools/test_apps/components" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | # "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| # This is the project CMakeLists.txt file for the test subproject | # This is the project CMakeLists.txt file for the test subproject | ||||||
| cmake_minimum_required(VERSION 3.5) | cmake_minimum_required(VERSION 3.5) | ||||||
|  |  | ||||||
| set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
|  |  | ||||||
| list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,3 +1,3 @@ | |||||||
| dependencies: | dependencies: | ||||||
|   test_utils: |   test_utils: | ||||||
|     path: ${IDF_PATH}/tools/unit-test-app/components/test_utils |     path: ${IDF_PATH}/tools/test_apps/components/test_utils | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||||
|  |  | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/examples/system/console/advanced/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/examples/system/console/advanced/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sd_test_utils/components") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sdmmc/components/sdmmc_tests") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdmmc/test_apps/sdmmc/components/sdmmc_tests") | ||||||
| list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdspi/test_apps/sdspi/components/sdspi_tests") | list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/components/esp_driver_sdspi/test_apps/sdspi/components/sdspi_tests") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Marius Vikhammer
					Marius Vikhammer