aboutsummaryrefslogtreecommitdiff
path: root/test/validation/system/system.h
blob: 869aaff4149a5e280c1ad2bacaad0de913610900 (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
/* Copyright (c) 2015, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:	BSD-3-Clause
 */

#ifndef _ODP_TEST_SYSTEM_H_
#define _ODP_TEST_SYSTEM_H_

#include <odp_cunit_common.h>

/* test functions: */
void system_test_odp_version_numbers(void);
void system_test_odp_cpu_count(void);
void system_test_odp_sys_cache_line_size(void);
void system_test_odp_sys_cpu_model_str(void);
void system_test_odp_sys_page_size(void);
void system_test_odp_sys_huge_page_size(void);
void system_test_odp_sys_cpu_hz(void);

/* test arrays: */
extern odp_testinfo_t system_suite[];

/* test registry: */
extern odp_suiteinfo_t system_suites[];

/* main test program: */
int system_main(void);

#endif