
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@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