]> pd.if.org Git - liblfds/blob - liblfds/liblfds7.1.0/test_and_benchmark/libtest/src/libtest_test/libtest_test_run.c
Initial import (all versions, including the new 7.1.0)
[liblfds] / liblfds / liblfds7.1.0 / test_and_benchmark / libtest / src / libtest_test / libtest_test_run.c
1 /***** includes *****/
2 #include "libtest_test_internal.h"
3
4
5
6
7
8 /****************************************************************************/
9 void libtest_test_run( struct libtest_test_state *ts,
10                        struct lfds710_list_asu_state *list_of_logical_processors,
11                        struct libshared_memory_state *ms,
12                        enum lfds710_misc_validity *dvs )
13 {
14   LFDS710_PAL_ASSERT( ts != NULL );
15   LFDS710_PAL_ASSERT( list_of_logical_processors != NULL );
16   LFDS710_PAL_ASSERT( ms != NULL );
17   LFDS710_PAL_ASSERT( dvs != NULL );
18
19   ts->test_function( list_of_logical_processors, ms, dvs );
20
21   return;
22 }
23