From 8a1f93ed4047ea9e570d0b74e29240f2ff68bb05 Mon Sep 17 00:00:00 2001 From: ActoryOu Date: Thu, 22 Sep 2022 09:59:13 +0800 Subject: [PATCH] Add RunOtaE2eDemo function for OTA E2E. (#49) --- src/qualification_test.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/qualification_test.c b/src/qualification_test.c index bd23d86..58839a7 100644 --- a/src/qualification_test.c +++ b/src/qualification_test.c @@ -32,6 +32,10 @@ extern int RunDeviceAdvisorDemo( void ); #endif +#if ( OTA_E2E_TEST_ENABLED == 1) + extern int RunOtaE2eDemo( void ); +#endif + #if ( TRANSPORT_INTERFACE_TEST_ENABLED == 1 ) #include "transport_interface_test.h" #endif @@ -62,6 +66,10 @@ void RunQualificationTest( void ) RunDeviceAdvisorDemo(); #endif + #if ( OTA_E2E_TEST_ENABLED == 1) + RunOtaE2eDemo(); + #endif + #if ( TRANSPORT_INTERFACE_TEST_ENABLED == 1 ) RunTransportInterfaceTest(); #endif