blob: 769d6e1f2987ccc6819673b3634bc636d5a9d9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <config.h>
#include <unistd.h>
#include "security/security_driver.h"
#include "testutils.h"
static int
mymain(void)
{
virSecurityManager *mgr;
const char *doi, *model;
mgr = virSecurityManagerNew(NULL, "QEMU", VIR_SECURITY_MANAGER_DEFAULT_CONFINED);
if (mgr == NULL) {
fprintf(stderr, "Failed to start security driver");
return EXIT_FAILURE;
}
model = virSecurityManagerGetModel(mgr);
if (!model) {
fprintf(stderr, "Failed to copy secModel model: %s",
g_strerror(errno));
return EXIT_FAILURE;
}
doi = virSecurityManagerGetDOI(mgr);
if (!doi) {
fprintf(stderr, "Failed to copy secModel DOI: %s",
g_strerror(errno));
return EXIT_FAILURE;
}
virObjectUnref(mgr);
return EXIT_SUCCESS;
}
VIR_TEST_MAIN(mymain)
|