2016-04-26 13:04:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Jiri Denemark <jdenemar@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "testutils.h"
|
|
|
|
#include "internal.h"
|
2017-07-21 13:09:54 +00:00
|
|
|
#include "virarch.h"
|
2016-04-26 13:04:55 +00:00
|
|
|
#include "virthread.h"
|
|
|
|
#include "qemu/qemu_capabilities.h"
|
2017-03-22 15:22:15 +00:00
|
|
|
#define __QEMU_CAPSPRIV_H_ALLOW__ 1
|
2016-04-26 13:04:55 +00:00
|
|
|
#include "qemu/qemu_capspriv.h"
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
eventLoop(void *opaque ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
while (1) {
|
|
|
|
if (virEventRunDefaultImpl() < 0) {
|
|
|
|
fprintf(stderr, "Failed to run event loop: %s\n",
|
2016-05-19 19:10:18 +00:00
|
|
|
virGetLastErrorMessage());
|
2016-04-26 13:04:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
virThread thread;
|
|
|
|
virQEMUCapsPtr caps;
|
|
|
|
|
2017-03-29 14:45:42 +00:00
|
|
|
VIR_TEST_PRELOAD(abs_builddir "/.libs/qemucapsprobemock.so");
|
2016-04-26 13:04:55 +00:00
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
fprintf(stderr, "%s QEMU_binary\n", argv[0]);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virThreadInitialize() < 0 ||
|
|
|
|
virInitialize() < 0) {
|
|
|
|
fprintf(stderr, "Failed to initialize libvirt");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virEventRegisterDefaultImpl() < 0) {
|
|
|
|
fprintf(stderr, "Failed to register event implementation: %s\n",
|
2016-05-19 19:10:18 +00:00
|
|
|
virGetLastErrorMessage());
|
2016-04-26 13:04:55 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virThreadCreate(&thread, false, eventLoop, NULL) < 0)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2017-07-21 13:09:54 +00:00
|
|
|
if (!(caps = virQEMUCapsNewForBinaryInternal(VIR_ARCH_NONE, argv[1], "/tmp",
|
2016-04-26 13:04:55 +00:00
|
|
|
-1, -1, true)))
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
virObjectUnref(caps);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|