1/*
2 * Copyright 2016, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(D61_BSD)
11 */
12
13#ifndef _OS_TESTS_FILE_SERVER_H_
14#define _OS_TESTS_FILE_SERVER_H_
15
16#include <autoconf.h>
17
18#ifdef CONFIG_REFOS_RUN_TESTS
19
20#include <assert.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24
25#include <refos/refos.h>
26#include <refos/test.h>
27#include <refos/error.h>
28#include <refos/vmlayout.h>
29
30#include <refos-rpc/name_client.h>
31#include <refos-rpc/name_client_helper.h>
32#include <refos-rpc/proc_client.h>
33#include <refos-rpc/proc_client_helper.h>
34#include <refos-rpc/data_client.h>
35#include <refos-rpc/data_client_helper.h>
36#include <refos-rpc/serv_client.h>
37
38void test_file_server(void);
39
40#endif /* _OS_TESTS_FILE_SERVER_H_ */
41
42#endif /* _FILESERV_TESTS_H_ */