-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ActoryOu/idt_tests_lts2
Update libraries to LTS 2.0 version.
- Loading branch information
Showing
25 changed files
with
2,021 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[submodule "components/esp-aws-iot"] | ||
path = components/esp-aws-iot | ||
url = https://github.com/espressif/esp-aws-iot.git | ||
[submodule "components/esp_secure_cert_mgr"] | ||
path = components/esp_secure_cert_mgr | ||
url = https://github.com/espressif/esp_secure_cert_mgr.git | ||
[submodule "components/esp-aws-iot"] | ||
path = components/esp-aws-iot | ||
url = https://github.com/espressif/esp-aws-iot | ||
[submodule "components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests"] | ||
path = components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests | ||
url = https://github.com/FreeRTOS/FreeRTOS-Libraries-Integration-Tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
components/FreeRTOS-Libraries-Integration-Tests/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# This gives QUALIFICATION_TEST_SOURCES, and QUALIFICATION_TEST_INCLUDE_DIRS | ||
include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/qualification_test.cmake) | ||
|
||
# This gives TRANSPORT_TEST_SOURCES, and TRANSPORT_TEST_INCLUDE_DIRS | ||
include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/transport_interface_test.cmake) | ||
|
||
# This gives MQTT_TEST_SOURCES, and MQTT_TEST_INCLUDE_DIRS | ||
include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/mqtt_test.cmake) | ||
|
||
# This gives OTA_PAL_TEST_SOURCES, and OTA_PAL_TEST_INCLUDE_DIRS | ||
include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/ota_pal_test.cmake) | ||
|
||
# This gives PKCS11_TEST_SOURCES, and PKCS11_TEST_INCLUDE_DIRS | ||
include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/pkcs11_test.cmake) | ||
|
||
set(IDT_INCLUDE_DIRS | ||
${QUALIFICATION_TEST_INCLUDE_DIRS} | ||
${TRANSPORT_TEST_INCLUDE_DIRS} | ||
${MQTT_TEST_INCLUDE_DIRS} | ||
${OTA_PAL_TEST_INCLUDE_DIRS} | ||
${PKCS11_TEST_INCLUDE_DIRS} | ||
${CMAKE_CURRENT_LIST_DIR}/config | ||
) | ||
|
||
set(IDT_SRCS | ||
${QUALIFICATION_TEST_SOURCES} | ||
${TRANSPORT_TEST_SOURCES} | ||
${MQTT_TEST_SOURCES} | ||
${OTA_PAL_TEST_SOURCES} | ||
${PKCS11_TEST_SOURCES} | ||
${CMAKE_CURRENT_LIST_DIR}/port/platform_function.c | ||
${CMAKE_CURRENT_LIST_DIR}/../esp-aws-iot/libraries/corePKCS11/corePKCS11/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c | ||
) | ||
|
||
set(IDT_REQUIRES | ||
unity | ||
coreMQTT | ||
coreHTTP | ||
freertos | ||
corePKCS11 | ||
ota-for-aws-iot-embedded-sdk | ||
) | ||
|
||
idf_component_register( | ||
SRCS | ||
${IDT_SRCS} | ||
INCLUDE_DIRS | ||
${IDT_INCLUDE_DIRS} | ||
REQUIRES | ||
${IDT_REQUIRES} | ||
) |
1 change: 1 addition & 0 deletions
1
components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests
Submodule FreeRTOS-Libraries-Integration-Tests
added at
4ec824
Oops, something went wrong.