aboutsummaryrefslogtreecommitdiff
path: root/test/common_plat/validation/api/system/system.c
diff options
context:
space:
mode:
authorBalakrishna Garapati <balakrishna.garapati@linaro.org>2017-07-26 11:22:25 +0200
committerBalakrishna Garapati <balakrishna.garapati@linaro.org>2017-07-26 11:22:25 +0200
commitd8533b4e575d62c9f6f2caedd38d98a1a56fb8d3 (patch)
treecdbfedf7f9abaab651f1130b5bbeea0bc7a0ab09 /test/common_plat/validation/api/system/system.c
parent716fed6776977db67a0c498b0c3990887903f08d (diff)
parent107b9411e85aad0a48d759fbf0572a631e189a02 (diff)
Sync odp-dpdk with v1.15 release from odpv1.15.0.0_DPDK_17.02
Diffstat (limited to 'test/common_plat/validation/api/system/system.c')
-rw-r--r--test/common_plat/validation/api/system/system.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/common_plat/validation/api/system/system.c b/test/common_plat/validation/api/system/system.c
index 57ff34eb9..5b7ca01ae 100644
--- a/test/common_plat/validation/api/system/system.c
+++ b/test/common_plat/validation/api/system/system.c
@@ -301,6 +301,13 @@ void system_test_odp_cpu_hz_max_id(void)
}
}
+void system_test_info_print(void)
+{
+ printf("\n\nCalling system info print...\n");
+ odp_sys_info_print();
+ printf("...done. ");
+}
+
odp_testinfo_t system_suite[] = {
ODP_TEST_INFO(system_test_odp_version_numbers),
ODP_TEST_INFO(system_test_odp_cpu_count),
@@ -319,6 +326,7 @@ odp_testinfo_t system_suite[] = {
ODP_TEST_INFO(system_test_odp_cpu_cycles_max),
ODP_TEST_INFO(system_test_odp_cpu_cycles_resolution),
ODP_TEST_INFO(system_test_odp_cpu_cycles_diff),
+ ODP_TEST_INFO(system_test_info_print),
ODP_TEST_INFO_NULL,
};