root / lab4 / .minix-src / include / atf-c / utils.h @ 13
History | View | Annotate | Download (2.26 KB)
1 | 13 | up20180614 | /*
|
---|---|---|---|
2 | * Automated Testing Framework (atf)
|
||
3 | *
|
||
4 | * Copyright (c) 2010 The NetBSD Foundation, Inc.
|
||
5 | * All rights reserved.
|
||
6 | *
|
||
7 | * Redistribution and use in source and binary forms, with or without
|
||
8 | * modification, are permitted provided that the following conditions
|
||
9 | * are met:
|
||
10 | * 1. Redistributions of source code must retain the above copyright
|
||
11 | * notice, this list of conditions and the following disclaimer.
|
||
12 | * 2. Redistributions in binary form must reproduce the above copyright
|
||
13 | * notice, this list of conditions and the following disclaimer in the
|
||
14 | * documentation and/or other materials provided with the distribution.
|
||
15 | *
|
||
16 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
|
||
17 | * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||
18 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||
19 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||
20 | * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
|
||
21 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||
22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||
23 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||
24 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
||
25 | * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||
26 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
||
27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
28 | */
|
||
29 | |||
30 | #if !defined(ATF_C_UTILS_H)
|
||
31 | #define ATF_C_UTILS_H
|
||
32 | |||
33 | #include <stdbool.h> |
||
34 | #include <unistd.h> |
||
35 | |||
36 | #include <atf-c/defs.h> |
||
37 | |||
38 | void atf_utils_cat_file(const char *, const char *); |
||
39 | bool atf_utils_compare_file(const char *, const char *); |
||
40 | void atf_utils_copy_file(const char *, const char *); |
||
41 | void atf_utils_create_file(const char *, const char *, ...) |
||
42 | ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(2, 3); |
||
43 | bool atf_utils_file_exists(const char *); |
||
44 | pid_t atf_utils_fork(void);
|
||
45 | void atf_utils_free_charpp(char **); |
||
46 | bool atf_utils_grep_file(const char *, const char *, ...) |
||
47 | ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(1, 3); |
||
48 | bool atf_utils_grep_string(const char *, const char *, ...) |
||
49 | ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(1, 3); |
||
50 | char *atf_utils_readline(int); |
||
51 | void atf_utils_redirect(const int, const char *); |
||
52 | void atf_utils_wait(const pid_t, const int, const char *, const char *); |
||
53 | |||
54 | #endif /* ATF_C_UTILS_H */ |