From: Cole Robinson Date: Mon, 9 Dec 2019 14:30:09 +0000 (-0500) Subject: tests: fix REGENERATE test-wrap-argv.py usage X-Git-Tag: v6.0.0-rc1~381 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1e753848bf465b436066ac203e98d009a30c6d3;p=thirdparty%2Flibvirt.git tests: fix REGENERATE test-wrap-argv.py usage The path needs to be adjusted for the new script location Reviewed-by: Ján Tomko Signed-off-by: Cole Robinson --- diff --git a/tests/testutils.c b/tests/testutils.c index 9312ff761e..a8215afa42 100644 --- a/tests/testutils.c +++ b/tests/testutils.c @@ -433,7 +433,7 @@ virTestRewrapFile(const char *filename) return -1; } - script = g_strdup_printf("%s/test-wrap-argv.py", abs_srcdir); + script = g_strdup_printf("%s/scripts/test-wrap-argv.py", abs_top_srcdir); cmd = virCommandNewArgList(python, script, "--in-place", filename, NULL); if (virCommandRun(cmd, NULL) < 0)