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
54 lines
1.1 KiB
C
54 lines
1.1 KiB
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;
|
|
semanage_seuser_t *seuser;
|
|
int result;
|
|
const char *str;
|
|
|
|
if (argc < 2)
|
|
exit(2);
|
|
|
|
sh = get_handle(argv[1]);
|
|
|
|
result = semanage_seuser_create(sh, &seuser);
|
|
printf("semanage_seuser_create(%p, %p): %d\n",
|
|
(void *) sh, (void *) seuser, result);
|
|
|
|
if (result < 0) {
|
|
perror("semanage_seuser_create");
|
|
exit(1);
|
|
}
|
|
|
|
str = semanage_seuser_get_name(seuser);
|
|
|
|
if (str != NULL) {
|
|
fprintf(stderr, "Expected name == NULL, got %s\n", str);
|
|
exit(1);
|
|
}
|
|
|
|
str = semanage_seuser_get_sename(seuser);
|
|
|
|
if (str != NULL) {
|
|
fprintf(stderr, "Expected sename == NULL, got %s\n", str);
|
|
exit(1);
|
|
}
|
|
|
|
str = semanage_seuser_get_mlsrange(seuser);
|
|
|
|
if (str != NULL) {
|
|
fprintf(stderr, "Expected mlsrange == NULL, got %s\n", str);
|
|
exit(1);
|
|
}
|
|
|
|
destroy_handle(sh, argv[1]);
|
|
|
|
exit(0);
|
|
}
|