]> pd.if.org Git - liblfds/blob - libtest_test_run.c
fa5bc369c977bfa3171158f26ccc60b38b3671ed
[liblfds] / 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