mirror of https://gitee.com/openkylin/libvirt.git
Added inactive domain management support to the test driver
This commit is contained in:
parent
ec329ce910
commit
5fbd4b15e0
|
@ -1,3 +1,9 @@
|
||||||
|
Thu Jan 18 16:05:13 EST 2007 Daniel Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* src/test.h, src/test.c: Implement full inactive domain management
|
||||||
|
support in mock hypervisor to allow testing of apps wanting inactive
|
||||||
|
domains.
|
||||||
|
|
||||||
Thu Jan 18 13:37:02 EST 2007 Daniel Berrange <berrange@redhat.com>
|
Thu Jan 18 13:37:02 EST 2007 Daniel Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* src/xend_internal.c: Tweak some of the new inactive domain methods
|
* src/xend_internal.c: Tweak some of the new inactive domain methods
|
||||||
|
@ -14,7 +20,7 @@ Wed Jan 10 11:06:36 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
fixed or added a number constructs
|
fixed or added a number constructs
|
||||||
|
|
||||||
Tue Jan 9 17:28:18 CET 2007 Daniel Veillard <veillard@redhat.com>
|
Tue Jan 9 17:28:18 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* docs/libvirt.rng: first version of the Relax-NG schemas to validate
|
* docs/libvirt.rng: first version of the Relax-NG schemas to validate
|
||||||
XML instances
|
XML instances
|
||||||
|
|
||||||
|
|
1956
src/test.c
1956
src/test.c
File diff suppressed because it is too large
Load Diff
72
src/test.h
72
src/test.h
|
@ -1,15 +1,28 @@
|
||||||
/*
|
/*
|
||||||
* test.h: A "mock" hypervisor for use by application unit tests
|
* test.h: A "mock" hypervisor for use by application unit tests
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006 Red Hat, Inc.
|
* Copyright (C) 2006-2006 Red Hat, Inc.
|
||||||
|
* Copyright (C) 2006 Daniel P. Berrange
|
||||||
*
|
*
|
||||||
* See COPYING.LIB for the License of this software
|
* 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, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* Daniel Berrange <berrange@redhat.com>
|
* Daniel Berrange <berrange@redhat.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __VIR_TEST_SIMPLE_INTERNAL_H__
|
#ifndef __VIR_TEST_INTERNAL_H__
|
||||||
#define __VIR_TEST_SIMPLE_INTERNAL_H__
|
#define __VIR_TEST_INTERNAL_H__
|
||||||
|
|
||||||
#include <libvirt/virterror.h>
|
#include <libvirt/virterror.h>
|
||||||
|
|
||||||
|
@ -17,47 +30,18 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void testRegister(void);
|
void testRegister(void);
|
||||||
int testOpen(virConnectPtr conn,
|
|
||||||
const char *name,
|
|
||||||
int flags);
|
|
||||||
int testClose (virConnectPtr conn);
|
|
||||||
int testGetVersion(virConnectPtr conn,
|
|
||||||
unsigned long *hvVer);
|
|
||||||
int testNodeGetInfo(virConnectPtr conn,
|
|
||||||
virNodeInfoPtr info);
|
|
||||||
int testNumOfDomains(virConnectPtr conn);
|
|
||||||
int testListDomains(virConnectPtr conn,
|
|
||||||
int *ids,
|
|
||||||
int maxids);
|
|
||||||
char *testGetOSType(virDomainPtr dom);
|
|
||||||
virDomainPtr
|
|
||||||
testDomainCreateLinux(virConnectPtr conn, const char *xmlDesc,
|
|
||||||
unsigned int flags ATTRIBUTE_UNUSED);
|
|
||||||
virDomainPtr testLookupDomainByID(virConnectPtr conn,
|
|
||||||
int id);
|
|
||||||
virDomainPtr testLookupDomainByUUID(virConnectPtr conn,
|
|
||||||
const unsigned char *uuid);
|
|
||||||
virDomainPtr testLookupDomainByName(virConnectPtr conn,
|
|
||||||
const char *name);
|
|
||||||
int testDestroyDomain(virDomainPtr domain);
|
|
||||||
int testResumeDomain(virDomainPtr domain);
|
|
||||||
int testPauseDomain(virDomainPtr domain);
|
|
||||||
int testShutdownDomain (virDomainPtr domain);
|
|
||||||
int testRebootDomain (virDomainPtr domain,
|
|
||||||
virDomainRestart action);
|
|
||||||
int testGetDomainInfo(virDomainPtr domain,
|
|
||||||
virDomainInfoPtr info);
|
|
||||||
unsigned long testGetMaxMemory(virDomainPtr domain);
|
|
||||||
int testSetMaxMemory(virDomainPtr domain,
|
|
||||||
unsigned long memory);
|
|
||||||
int testSetMemory(virDomainPtr domain,
|
|
||||||
unsigned long memory);
|
|
||||||
int testSetVcpus(virDomainPtr domain,
|
|
||||||
unsigned int nrCpus);
|
|
||||||
char * testDomainDumpXML(virDomainPtr domain, int flags);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* __VIR_TEST_INTERNAL_H__ */
|
#endif /* __VIR_TEST_INTERNAL_H__ */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Local variables:
|
||||||
|
* indent-tabs-mode: nil
|
||||||
|
* c-indent-level: 4
|
||||||
|
* c-basic-offset: 4
|
||||||
|
* tab-width: 4
|
||||||
|
* End:
|
||||||
|
*/
|
||||||
|
|
Loading…
Reference in New Issue