From e1e753848bf465b436066ac203e98d009a30c6d3 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 9 Dec 2019 09:30:09 -0500 Subject: [PATCH] tests: fix REGENERATE test-wrap-argv.py usage MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The path needs to be adjusted for the new script location Reviewed-by: Ján Tomko Signed-off-by: Cole Robinson --- tests/testutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.2