aba7ab1e5f
The following steps are used to execute the tests using the standard test interface: Docker sudo ANSIBLE_INVENTORY=$(test -e inventory && echo inventory || echo /usr/share/ansible/inventory) TEST_SUBJECTS=docker:docker.io/library/fedora:26 TEST_ARTIFACTS=$PWD/artifacts ansible-playbook --tags container tests.yml 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/libselinux/pull-request/1
32 lines
612 B
C
32 lines
612 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
#include <selinux/selinux.h>
|
|
|
|
int main (int argc, char **argv) {
|
|
if (argc < 2) {
|
|
printf("Invalid number of arguments");
|
|
return -1;
|
|
}
|
|
|
|
char *boolean_name;
|
|
|
|
if (strcmp(argv[1], "NULL") == 0) {
|
|
boolean_name = NULL;
|
|
}
|
|
else {
|
|
boolean_name = argv[1];
|
|
}
|
|
|
|
printf("Executing: selinux_boolean_sub(%s)\n", boolean_name);
|
|
|
|
char *result = selinux_boolean_sub(boolean_name);
|
|
|
|
printf("selinux_boolean_sub: %s\n", result);
|
|
|
|
free(result);
|
|
return 0;
|
|
}
|