Skip to content

Commit

Permalink
Add RunOtaE2eDemo function for OTA E2E. (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
ActoryOu authored Sep 22, 2022
1 parent 03201de commit 8a1f93e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/qualification_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8a1f93e

Please sign in to comment.