mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
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
|
static void
|
||||||
testCleanupImages(void)
|
testCleanupImages(void)
|
||||||
{
|
{
|
||||||
virCommandPtr cmd;
|
|
||||||
|
|
||||||
VIR_FREE(qemuimg);
|
VIR_FREE(qemuimg);
|
||||||
VIR_FREE(absraw);
|
VIR_FREE(absraw);
|
||||||
VIR_FREE(canonraw);
|
VIR_FREE(canonraw);
|
||||||
@ -79,9 +77,7 @@ testCleanupImages(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd = virCommandNewArgList("rm", "-rf", datadir, NULL);
|
virFileDeleteTree(datadir);
|
||||||
ignore_value(virCommandRun(cmd, NULL));
|
|
||||||
virCommandFree(cmd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
Loading…
Reference in New Issue
Block a user