aboutsummaryrefslogtreecommitdiff
path: root/test/validation/system/system.c
blob: 7687f20defb6138fe7447f00a23a2cecef4aa260 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Copyright (c) 2015, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:	BSD-3-Clause
 */

#include <ctype.h>
#include <odp.h>
#include "odp_cunit_common.h"
#include "test_debug.h"
#include "system.h"

void system_test_odp_version_numbers(void)
{
	int char_ok;
	char version_string[128];
	char *s = version_string;

	strncpy(version_string, odp_version_api_str(),
		sizeof(version_string) - 1);

	while (*s) {
		if (isdigit((int)*s) || (strncmp(s, ".", 1) == 0)) {
			char_ok = 1;
			s++;
		} else {
			char_ok = 0;
			LOG_DBG("\nBAD VERSION=%s\n", version_string);
			break;
		}
	}
	CU_ASSERT(char_ok);
}

void system_test_odp_cpu_count(void)
{
	int cpus;

	cpus = odp_cpu_count();
	CU_ASSERT(0 < cpus);
}

void system_test_odp_sys_cache_line_size(void)
{
	uint64_t cache_size;

	cache_size = odp_sys_cache_line_size();
	CU_ASSERT(0 < cache_size);
	CU_ASSERT(ODP_CACHE_LINE_SIZE == cache_size);
}

void system_test_odp_sys_cpu_model_str(void)
{
	char model[128];

	snprintf(model, 128, "%s", odp_sys_cpu_model_str());
	CU_ASSERT(strlen(model) > 0);
	CU_ASSERT(strlen(model) < 127);
}

void system_test_odp_sys_page_size(void)
{
	uint64_t page;

	page = odp_sys_page_size();
	CU_ASSERT(0 < page);
	CU_ASSERT(ODP_PAGE_SIZE == page);
}

void system_test_odp_sys_huge_page_size(void)
{
	uint64_t page;

	page = odp_sys_huge_page_size();
	CU_ASSERT(0 < page);
}

void system_test_odp_sys_cpu_hz(void)
{
	uint64_t hz;

	hz = odp_sys_cpu_hz();
	CU_ASSERT(0 < hz);
}

CU_TestInfo system_suite[] = {
	{"odp version",  system_test_odp_version_numbers},
	{"odp_cpu_count",  system_test_odp_cpu_count},
	{"odp_sys_cache_line_size",  system_test_odp_sys_cache_line_size},
	{"odp_sys_cpu_model_str",  system_test_odp_sys_cpu_model_str},
	{"odp_sys_page_size",  system_test_odp_sys_page_size},
	{"odp_sys_huge_page_size",  system_test_odp_sys_huge_page_size},
	{"odp_sys_cpu_hz",  system_test_odp_sys_cpu_hz},
	CU_TEST_INFO_NULL,
};

CU_SuiteInfo system_suites[] = {
	{"System Info", NULL, NULL, NULL, NULL, system_suite},
	CU_SUITE_INFO_NULL,
};

int system_main(void)
{
	return odp_cunit_run(system_suites);
}