[libvirt] [PATCH] test: Fake security driver support in capabilities

Daniel Veillard veillard at redhat.com
Wed Feb 10 10:44:31 UTC 2010


On Tue, Feb 09, 2010 at 03:29:10PM -0500, Cole Robinson wrote:
> Having some value in capabilities helps testing this stuff in
> virt-manager.
> 
> Signed-off-by: Cole Robinson <crobinso at redhat.com>
> ---
>  src/test/test_driver.c |    8 ++++++++
>  1 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/src/test/test_driver.c b/src/test/test_driver.c
> index 411c5cd..3f95a22 100644
> --- a/src/test/test_driver.c
> +++ b/src/test/test_driver.c
> @@ -205,6 +205,14 @@ testBuildCapabilities(virConnectPtr conn) {
>      caps->privateDataAllocFunc = testDomainObjPrivateAlloc;
>      caps->privateDataFreeFunc = testDomainObjPrivateFree;
>  
> +    caps->host.secModel.model = strdup("testSecurity");
> +    if (!caps->host.secModel.model)
> +        goto no_memory;
> +
> +    caps->host.secModel.doi = strdup("");
> +    if (!caps->host.secModel.doi)
> +        goto no_memory;
> +
>      return caps;
>  
>  no_memory:

  ACK,

Daniel

-- 
Daniel Veillard      | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
daniel at veillard.com  | Rpmfind RPM search engine http://rpmfind.net/
http://veillard.com/ | virtualization library  http://libvirt.org/




More information about the libvir-list mailing list