Skip to content

Commit 8a1f93e

Browse files
authored
Add RunOtaE2eDemo function for OTA E2E. (#49)
1 parent 03201de commit 8a1f93e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/qualification_test.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
extern int RunDeviceAdvisorDemo( void );
3333
#endif
3434

35+
#if ( OTA_E2E_TEST_ENABLED == 1)
36+
extern int RunOtaE2eDemo( void );
37+
#endif
38+
3539
#if ( TRANSPORT_INTERFACE_TEST_ENABLED == 1 )
3640
#include "transport_interface_test.h"
3741
#endif
@@ -62,6 +66,10 @@ void RunQualificationTest( void )
6266
RunDeviceAdvisorDemo();
6367
#endif
6468

69+
#if ( OTA_E2E_TEST_ENABLED == 1)
70+
RunOtaE2eDemo();
71+
#endif
72+
6573
#if ( TRANSPORT_INTERFACE_TEST_ENABLED == 1 )
6674
RunTransportInterfaceTest();
6775
#endif

0 commit comments

Comments
 (0)