cap_test.h revision 221431
1221431Sjonathan/*-
2221431Sjonathan * Copyright (c) 2008-2011 Robert N. M. Watson
3221431Sjonathan * All rights reserved.
4221431Sjonathan *
5221431Sjonathan * Redistribution and use in source and binary forms, with or without
6221431Sjonathan * modification, are permitted provided that the following conditions
7221431Sjonathan * are met:
8221431Sjonathan * 1. Redistributions of source code must retain the above copyright
9221431Sjonathan *    notice, this list of conditions and the following disclaimer.
10221431Sjonathan * 2. Redistributions in binary form must reproduce the above copyright
11221431Sjonathan *    notice, this list of conditions and the following disclaimer in the
12221431Sjonathan *    documentation and/or other materials provided with the distribution.
13221431Sjonathan *
14221431Sjonathan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15221431Sjonathan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16221431Sjonathan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17221431Sjonathan * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18221431Sjonathan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19221431Sjonathan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20221431Sjonathan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21221431Sjonathan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22221431Sjonathan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23221431Sjonathan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24221431Sjonathan * SUCH DAMAGE.
25221431Sjonathan *
26221431Sjonathan * $FreeBSD: head/tools/regression/security/cap_test/cap_test.h 221431 2011-05-04 12:44:46Z jonathan $
27221431Sjonathan */
28221431Sjonathan
29221431Sjonathan#ifndef CAP_TEST_H
30221431Sjonathan#define	CAP_TEST_H
31221431Sjonathan
32221431Sjonathanvoid	test_capmode(void);
33221431Sjonathanvoid	test_capabilities(void);
34221431Sjonathanvoid	test_syscalls(void);
35221431Sjonathanvoid	test_sysctl(void);
36221431Sjonathanvoid	test_fcntl(void);
37221431Sjonathan
38221431Sjonathan#endif /* CAP_TEST_H */
39