From: Peter Krempa Date: Wed, 8 Sep 2021 12:10:51 +0000 (+0200) Subject: virstoragetest: testStorageChain: Skip test if filename is NULL X-Git-Tag: v7.8.0-rc1~272 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dad6d609ccc3582df5dbe4215be6c5b8837b42f1;p=thirdparty%2Flibvirt.git virstoragetest: testStorageChain: Skip test if filename is NULL Prepare the test runner for skipping individual tests if images can't be formatted rather than the whole virstoragetest. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/tests/virstoragetest.c b/tests/virstoragetest.c index c258bc1709..d9ab630600 100644 --- a/tests/virstoragetest.c +++ b/tests/virstoragetest.c @@ -176,6 +176,11 @@ testStorageChain(const void *args) g_autofree char *expectpath = g_strdup_printf("%s/virstoragetestdata/out/%s", abs_srcdir, data->testname); + /* If the filename is NULL it means that the images couldn't be created, + * thus skip this particular test. */ + if (!data->start) + return EXIT_AM_SKIP; + meta = testStorageFileGetMetadata(data->start, data->format, -1, -1); if (!meta) { if (data->flags & EXP_FAIL) {