]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
testQemuConfXMLCommon: Strip 'abs_srcdir' paths from '.err' files in qemuxmlconftest
authorPeter Krempa <pkrempa@redhat.com>
Fri, 9 Aug 2024 12:21:23 +0000 (14:21 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Fri, 9 Aug 2024 14:34:33 +0000 (16:34 +0200)
Upcoming patch will result in having the build directory path in some of
the output files. Replace it by a constant 'ABS_SRCDIR' to avoild
breaking tests.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
tests/qemuxmlconftest.c

index 2e8b7869838add868d9305843601cfc3e6d3f1ab..6e882ca0a81748db056056593c75cba83abdb0a8 100644 (file)
@@ -687,8 +687,12 @@ testQemuConfXMLCommon(testQemuInfo *info,
         }
 
         if (info->flags & FLAG_EXPECT_PARSE_ERROR) {
-            g_autofree char *tmperr = g_strdup_printf("%s\n", NULLSTR(err->message));
-            if (virTestCompareToFile(tmperr, info->errfile) >= 0) {
+            g_autoptr(GString) errstr = g_string_new(NULLSTR(err->message));
+
+            g_string_replace(errstr, abs_srcdir, "ABS_SRCDIR", 0);
+            g_string_append_c(errstr, '\n');
+
+            if (virTestCompareToFile(errstr->str, info->errfile) >= 0) {
                 info->prep_skip = true;
             }
         }