aboutsummaryrefslogtreecommitdiff
path: root/test/common_plat/validation/api/init/init.h
blob: cad9cf98899dc9fdeac72d5ffe99f35cae2c3037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Copyright (c) 2015, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#ifndef _ODP_TEST_INIT_H_
#define _ODP_TEST_INIT_H_

#include <odp_cunit_common.h>

/* test functions: */
void init_test_odp_init_global_replace_abort(void);
void init_test_odp_init_global_replace_log(void);
void init_test_odp_init_global(void);

/* test arrays: */
extern odp_testinfo_t init_suite_abort[];
extern odp_testinfo_t init_suite_log[];
extern odp_testinfo_t init_suite_ok[];

/* test registry: */
extern odp_suiteinfo_t init_suites_abort[];
extern odp_suiteinfo_t init_suites_log[];
extern odp_suiteinfo_t init_suites_ok[];

/* main test program: */
int init_main_abort(int argc, char *argv[]);
int init_main_log(int argc, char *argv[]);
int init_main_ok(int argc, char *argv[]);

#endif