aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGreg Kurz <groug@kaod.org>2020-10-30 13:46:34 +0100
committerChristian Schoenebeck <qemu_oss@crudebyte.com>2020-11-01 19:44:29 +0100
commit603cc76a60691b288947c88ad63b7b0d616f98b6 (patch)
tree49cad5635bbee4806fe99c2c77e29adc11c6d163 /tests
parent5409d8bea40289106e1005c41973382a7dfacf1c (diff)
downloadqemu-603cc76a60691b288947c88ad63b7b0d616f98b6.zip
qemu-603cc76a60691b288947c88ad63b7b0d616f98b6.tar.gz
qemu-603cc76a60691b288947c88ad63b7b0d616f98b6.tar.bz2
tests/9pfs: Force removing of local 9pfs test directory
No need to get a complaint from "rm" if some path disappeared for some reason. Signed-off-by: Greg Kurz <groug@kaod.org> Message-Id: <160406199444.312256.8319835906008559151.stgit@bahia.lan> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qtest/libqos/virtio-9p.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/libqos/virtio-9p.c b/tests/qtest/libqos/virtio-9p.c
index 3671043..be91662 100644
--- a/tests/qtest/libqos/virtio-9p.c
+++ b/tests/qtest/libqos/virtio-9p.c
@@ -67,7 +67,7 @@ void virtio_9p_create_local_test_dir(void)
void virtio_9p_remove_local_test_dir(void)
{
g_assert(local_test_path != NULL);
- char *cmd = g_strdup_printf("rm -r '%s'\n", local_test_path);
+ char *cmd = g_strdup_printf("rm -fr '%s'\n", local_test_path);
int res = system(cmd);
if (res < 0) {
/* ignore error, dummy check to prevent compiler error */