CMSIS-Driver Validation  
Driver Validation
Functions

Functions

void closeDebug (void)
 Close the debug session. More...
 
void cmsis_dv (void *argument)
 This is the entry point of the test framework. More...
 

Description

Function Documentation

◆ closeDebug()

void closeDebug ( void  )

Debug session dead end - debug script should close session here. This function is called by cmsis_dv.

◆ cmsis_dv()

void cmsis_dv ( void *  argument)

Program flow:

  1. Test report is initialized
  2. For each test group following steps are executed:
    1. Test group initialization is called (custom test group initialization)
    2. Test group header is written to standard output
    3. All tests in a group are executed as follows:
      • Test statistics are initialized
      • Test report header is written to the standard output
      • Test function is executed
      • Test results are written to the standard output
      • Test report footer is written to the standard output
    4. Test group footer is written to standard output
    5. Test group uninitialization is called (custom test group uninitialization)
  3. Debug session ends when closeDebug function is reached