From: Thomas Huth Date: Thu, 22 Jun 2023 11:41:32 +0000 (+0200) Subject: tests/qtest/cxl-test: Clean up temporary directories after testing X-Git-Tag: qemu-xen-4.20.0~671^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b197ea8636a18b0e2968b00c3a392bfc641b51a0;p=qemu-xen.git tests/qtest/cxl-test: Clean up temporary directories after testing It's good style to clean up temporary directories when they are not needed anymore. Message-Id: <20230622114132.372898-1-thuth@redhat.com> Acked-by: Jonathan Cameron Signed-off-by: Thomas Huth --- diff --git a/tests/qtest/cxl-test.c b/tests/qtest/cxl-test.c index edcad4a0ce..a600331843 100644 --- a/tests/qtest/cxl-test.c +++ b/tests/qtest/cxl-test.c @@ -124,6 +124,7 @@ static void cxl_t3d_deprecated(void) qtest_start(cmdline->str); qtest_end(); + rmdir(tmpfs); } static void cxl_t3d_persistent(void) @@ -138,6 +139,7 @@ static void cxl_t3d_persistent(void) qtest_start(cmdline->str); qtest_end(); + rmdir(tmpfs); } static void cxl_t3d_volatile(void)