Message ID | 20220414135141.1723610-2-jwcart2@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [1/5] libsepol/test Include policydb.h header for policydb_t declaration | expand |
diff --git a/libsepol/tests/test-common.c b/libsepol/tests/test-common.c index f690635e..8f2807b2 100644 --- a/libsepol/tests/test-common.c +++ b/libsepol/tests/test-common.c @@ -26,6 +26,7 @@ #include <CUnit/Basic.h> +#include "test-common.h" #include "helpers.h" void test_sym_presence(policydb_t * p, const char *id, int sym_type, unsigned int scope_type, unsigned int *decls, unsigned int len) diff --git a/libsepol/tests/test-linker-cond-map.c b/libsepol/tests/test-linker-cond-map.c index b02e7881..5400c46b 100644 --- a/libsepol/tests/test-linker-cond-map.c +++ b/libsepol/tests/test-linker-cond-map.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "test-linker-cond-map.h" #include "parse_util.h" #include "helpers.h" #include "test-common.h" diff --git a/libsepol/tests/test-linker-roles.c b/libsepol/tests/test-linker-roles.c index 6843252b..2b17dffd 100644 --- a/libsepol/tests/test-linker-roles.c +++ b/libsepol/tests/test-linker-roles.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "test-linker-roles.h" #include "parse_util.h" #include "helpers.h" #include "test-common.h" diff --git a/libsepol/tests/test-linker-types.c b/libsepol/tests/test-linker-types.c index b41e08e0..048dd422 100644 --- a/libsepol/tests/test-linker-types.c +++ b/libsepol/tests/test-linker-types.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "test-linker-types.h" #include "parse_util.h" #include "helpers.h" #include "test-common.h"
This is needed to use "-Wmissing-prototypes". Signed-off-by: James Carter <jwcart2@gmail.com> --- libsepol/tests/test-common.c | 1 + libsepol/tests/test-linker-cond-map.c | 1 + libsepol/tests/test-linker-roles.c | 1 + libsepol/tests/test-linker-types.c | 1 + 4 files changed, 4 insertions(+)