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
8 changes: 7 additions & 1 deletion config_template/test_execution_config_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@
* #define TRANSPORT_INTERFACE_TEST_ENABLED (0)
*/

/**
/**
* @brief Configuration to enable the OTA PAL test.
*
* #define OTA_PAL_TEST_ENABLED (0)
*/

/**
* @brief Configuration to enable the OTA End-to-end test.
*
* #define OTA_E2E_TEST_ENABLED (0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the purpose of OTA_E2E_TEST_ENABLED?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This tells the application to run MQTT agent and OTA task

*/

/**
* @brief Configuration to enable the corePKCS11 test.
*
Expand Down
25 changes: 25 additions & 0 deletions config_template/test_param_config_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,4 +281,29 @@
* #define PKCS11_TEST_LABEL_ROOT_CERTIFICATE pkcs11configLABEL_ROOT_CERTIFICATE
*/

/**
* @brief The IoT Thing name for the device for OTA test.
*
* #define OTA_IOT_THING_NAME "PLACE_HOLDER"
*/

/**
* @brief Major version for OTA E2E test.
*
* #define OTA_APP_VERSION_MAJOR 0
*/

/**
* @brief Major version for OTA E2E test.
*
* #define OTA_APP_VERSION_MINOR 9
*/

/**
* @brief Major version for OTA E2E test.
*
* #define OTA_APP_VERSION_BUILD 1
*/


#endif /* TEST_PARAM_CONFIG_H */