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

Cole Robinson crobinso at redhat.com
Wed Feb 10 16:55:11 UTC 2010


On 02/10/2010 05:44 AM, Daniel Veillard wrote:
> 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
> 

Thanks, pushed now.

- Cole




More information about the libvir-list mailing list