aboutsummaryrefslogtreecommitdiff
path: root/test/validation/timer/timer.c
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2015-08-04 17:18:41 +0100
committerZoltan Kiss <zoltan.kiss@linaro.org>2015-08-04 17:18:41 +0100
commitf72f9c3b54293ac587de816b0b3fbc50005c1426 (patch)
tree8bd4811b9f18add159e053177cb48131febab2f8 /test/validation/timer/timer.c
parentb7bb9f3b117e59a2bd144af3f1c3465dbe636766 (diff)
parent3b09d8928f599c80cae0aa46be8db8ccaf5d800a (diff)
Merge branch 'master' of https://git.linaro.org/lng/odpv1.2.0.0_DPDK_2.0.0
Diffstat (limited to 'test/validation/timer/timer.c')
-rw-r--r--test/validation/timer/timer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/validation/timer/timer.c b/test/validation/timer/timer.c
index ecca78564..30b2b4343 100644
--- a/test/validation/timer/timer.c
+++ b/test/validation/timer/timer.c
@@ -50,7 +50,7 @@ struct test_timer {
#define TICK_INVALID (~(uint64_t)0)
-static void timer_test_timeout_pool_alloc(void)
+void timer_test_timeout_pool_alloc(void)
{
odp_pool_t pool;
const int num = 3;
@@ -94,7 +94,7 @@ static void timer_test_timeout_pool_alloc(void)
CU_ASSERT(odp_pool_destroy(pool) == 0);
}
-static void timer_test_timeout_pool_free(void)
+void timer_test_timeout_pool_free(void)
{
odp_pool_t pool;
odp_timeout_t tmo;
@@ -125,7 +125,7 @@ static void timer_test_timeout_pool_free(void)
CU_ASSERT(odp_pool_destroy(pool) == 0);
}
-static void timer_test_odp_timer_cancel(void)
+void timer_test_odp_timer_cancel(void)
{
odp_pool_t pool;
odp_pool_param_t params;
@@ -436,7 +436,7 @@ static void *worker_entrypoint(void *arg TEST_UNUSED)
}
/* @private Timer test case entrypoint */
-static void timer_test_odp_timer_all(void)
+void timer_test_odp_timer_all(void)
{
int rc;
odp_pool_param_t params;
@@ -529,7 +529,7 @@ static void timer_test_odp_timer_all(void)
CU_PASS("ODP timer test");
}
-static CU_TestInfo timer_suite[] = {
+CU_TestInfo timer_suite[] = {
{"test_timeout_pool_alloc", timer_test_timeout_pool_alloc},
{"test_timeout_pool_free", timer_test_timeout_pool_free},
{"test_odp_timer_cancel", timer_test_odp_timer_cancel},
@@ -537,7 +537,7 @@ static CU_TestInfo timer_suite[] = {
CU_TEST_INFO_NULL,
};
-static CU_SuiteInfo timer_suites[] = {
+CU_SuiteInfo timer_suites[] = {
{"Timer", NULL, NULL, NULL, NULL, timer_suite},
CU_SUITE_INFO_NULL,
};