Commit | Line | Data |
---|---|---|
aa968dde YB |
1 | /* |
2 | * common.h | |
3 | * | |
4 | * Lib BabelTrace - Common function to all tests | |
5 | * | |
6 | * Copyright 2012 - Yannick Brosseau <yannick.brosseau@gmail.com> | |
851299b9 | 7 | * Copyright 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
aa968dde YB |
8 | * |
9 | * This program is free software; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License as published by | |
11 | * the Free Software Foundation; under version 2 of the License. | |
12 | * | |
13 | * This program is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | * GNU General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU General Public License along | |
19 | * with this program; if not, write to the Free Software Foundation, Inc., | |
20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
21 | */ | |
22 | #ifndef _TESTS_COMMON_H | |
23 | #define _TESTS_COMMON_H | |
24 | ||
25 | struct bt_context; | |
26 | ||
851299b9 | 27 | void recursive_rmdir(const char *path); |
aa968dde YB |
28 | struct bt_context *create_context_with_path(const char *path); |
29 | ||
30 | #endif /* _TESTS_COMMON_H */ |