Difference between pages "r7.1.1:Struct libtest results state" and "r7.1.1:Struct libtest testsuite state"

From liblfds.org
(Difference between pages)
Jump to navigation Jump to search
m (1 revision imported)
 
m (1 revision imported)
 
Line 1: Line 1:
{{DISPLAYTITLE:struct libtest_results_state}}
{{DISPLAYTITLE:struct libtest_testsuite_state}}
==Source File==
==Source File==
  └── test_and_benchmark
  └── test_and_benchmark
Line 5: Line 5:
         └── inc
         └── inc
             └── libtest
             └── libtest
                 └── libtest_results.h
                 └── libtest_testsuite.h


==Opaque Structure==
==Opaque Structure==
  struct libtest_results_state;
  struct libtest_testsuite_state;


==Alignment==
==Alignment==
No alignment requirements.
Allocations must be ''LFDS711_PAL_ATOMIC_ISOLATION_IN_BYTES'' aligned.


==Notes==
==Notes==
This structure is the main state used by the ''libtest'' library to store test results.
This structure is the main state used by the ''libtest'' library to run tests.


==See Also==
==See Also==
* [[r7.1.1:Usage Guide (libtest)|Usage Guide (libtest)]]
* [[r7.1.1:Usage Guide (libtest)|Usage Guide (libtest)]]

Latest revision as of 20:16, 17 February 2017

Source File

└── test_and_benchmark
    └── libtest
        └── inc
            └── libtest
                └── libtest_testsuite.h

Opaque Structure

struct libtest_testsuite_state;

Alignment

Allocations must be LFDS711_PAL_ATOMIC_ISOLATION_IN_BYTES aligned.

Notes

This structure is the main state used by the libtest library to run tests.

See Also