7e4d093f54
The following steps are used to execute the tests using the standard test interface: Classic sudo ANSIBLE_INVENTORY=$(test -e inventory && echo inventory || echo /usr/share/ansible/inventory) TEST_SUBJECTS="" TEST_ARTIFACTS=$PWD/artifacts ansible-playbook --tags classic tests.yml https://src.fedoraproject.org/rpms/libsemanage/pull-request/2
33 lines
606 B
C
33 lines
606 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <semanage/semanage.h>
|
|
|
|
#include "functions.c"
|
|
|
|
int main (int argc, char **argv) {
|
|
semanage_handle_t *sh;
|
|
int result;
|
|
|
|
if (argc < 2)
|
|
exit(1);
|
|
|
|
sh = get_handle(argv[1]);
|
|
|
|
result = semanage_is_managed(sh);
|
|
printf("semanage_is_managed(%p): %d\n", (void *) sh, result);
|
|
|
|
if (result != 0 && result != 1) {
|
|
perror("semanage_is_managed");
|
|
exit(1);
|
|
}
|
|
|
|
if (argc >= 3)
|
|
check_result_int(argv[2], result);
|
|
|
|
destroy_handle(sh, argv[1]);
|
|
|
|
exit(0);
|
|
}
|