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

#ifndef _ODP_TEST_POOL_H_
#define _ODP_TEST_POOL_H_

#include <CUnit/Basic.h>

/* test functions: */
void pool_test_create_destroy_buffer(void);
void pool_test_create_destroy_packet(void);
void pool_test_create_destroy_timeout(void);
void pool_test_create_destroy_buffer_shm(void);
void pool_test_lookup_info_print(void);

/* test arrays: */
extern CU_TestInfo pool_suite[];

/* test registry: */
extern CU_SuiteInfo pool_suites[];

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

#endif