mirror of https://gitee.com/openkylin/libvirt.git
tests: simplify storage test cleanup
No need to spawn a child 'rm' process when we can do it ourselves. * tests/virstoragetest.c (testCleanupImages): Use dedicated helper. Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
138e65c3be
commit
8feec44a09
|
@ -62,8 +62,6 @@ static char *abslink2;
|
|||
static void
|
||||
testCleanupImages(void)
|
||||
{
|
||||
virCommandPtr cmd;
|
||||
|
||||
VIR_FREE(qemuimg);
|
||||
VIR_FREE(absraw);
|
||||
VIR_FREE(canonraw);
|
||||
|
@ -79,9 +77,7 @@ testCleanupImages(void)
|
|||
return;
|
||||
}
|
||||
|
||||
cmd = virCommandNewArgList("rm", "-rf", datadir, NULL);
|
||||
ignore_value(virCommandRun(cmd, NULL));
|
||||
virCommandFree(cmd);
|
||||
virFileDeleteTree(datadir);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue