[libvirt] [PATCH] tests: Fix commandtest in VPATH build

Jiri Denemark jdenemar at redhat.com
Fri Dec 3 16:21:25 UTC 2010


---
 tests/commandtest.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/tests/commandtest.c b/tests/commandtest.c
index ace2f33..31adeea 100644
--- a/tests/commandtest.c
+++ b/tests/commandtest.c
@@ -509,9 +509,12 @@ cleanup:
  * Only stdin/out/err open
  */
 static int test15(const void *unused ATTRIBUTE_UNUSED) {
+    char *cwd = NULL;
     virCommandPtr cmd = virCommandNew(abs_builddir "/commandhelper");
 
-    virCommandSetWorkingDirectory(cmd, abs_builddir "/commanddata");
+    if (virAsprintf(&cwd, "%s/commanddata", abs_srcdir) < 0)
+        return -1;
+    virCommandSetWorkingDirectory(cmd, cwd);
 
     if (virCommandRun(cmd, NULL) < 0) {
         virErrorPtr err = virGetLastError();
@@ -519,6 +522,7 @@ static int test15(const void *unused ATTRIBUTE_UNUSED) {
         return -1;
     }
 
+    VIR_FREE(cwd);
     virCommandFree(cmd);
 
     return checkoutput("test15");
-- 
1.7.3.2




More information about the libvir-list mailing list