Share via


SPS_END_TEST

This structure contains the function table entry and other useful information for the test that has just executed.

typedef struct _SPS_END_TEST {
  LPFUNCTION_TABLE_ENTRY lpFTE;
  DWORD dwResult;
  DWORD dwRandomSeed;
  DWORD dwThreadCount;
  DWORD dwExecutionTime;
} SPS_END_TEST, *LPSPS_END_TEST; 

Members

  • lpFTE
    Pointer to the FUNCTION_TABLE_ENTRY structure within your module's function table for the current test case.

  • dwResult
    Results of the test that has just executed or been skipped.

    The following are valid test results:

    • TPR_SKIP
    • TPR_PASS
    • TPR_FAIL
    • TPR_ABORT
  • dwRandomSeed
    Random seed used to execute the current test case.

  • dwThreadCount
    Number of threads that were actually used to execute the current test case.

  • dwExecutionTime
    Elapsed execution time in milliseconds that the current test case took to complete.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Tux.h.

See Also

SPM_END_TEST | FUNCTION_TABLE_ENTRY

 Last updated on Friday, October 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.