CMSIS-Driver Validation  Version 1.4.0
Driver Validation
 All Data Structures Files Functions Variables Typedefs Macros Groups Pages
Framework Functions

Functions in the Framework software component. More...

Functions

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

Description

Function Documentation

void __attribute__ ( (noinline)  )
void closeDebug ( void  )

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

void cmsis_dv ( void __attribute__((unused))*  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 case statistics are initialized
      • Test case report header is written to the standard output
      • Test case is executed
      • Test case results are written to the standard output
      • Test case 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