capitests: Set path in TESTS_ENVIRONMENT instead of in tests.c
authorRichard W.M. Jones <rjones@redhat.com>
Wed, 3 Nov 2010 17:26:00 +0000 (17:26 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Wed, 3 Nov 2010 17:28:02 +0000 (17:28 +0000)
By exporting LIBGUESTFS_PATH with the right path to the appliance,
we no longer need to hard code the path in tests.c

capitests/Makefile.am
generator/generator_capitests.ml

index 023efe4..65a7240 100644 (file)
@@ -38,6 +38,7 @@ TESTS_ENVIRONMENT = \
        SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
        SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
        SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
        SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
        SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
        SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
+       LIBGUESTFS_PATH=$(top_builddir)/appliance \
        $(VG)
 
 # Run the tests under valgrind.
        $(VG)
 
 # Run the tests under valgrind.
index b41e288..707d59b 100644 (file)
@@ -175,8 +175,6 @@ int main (int argc, char *argv[])
 
   guestfs_set_error_handler (g, print_error, NULL);
 
 
   guestfs_set_error_handler (g, print_error, NULL);
 
-  guestfs_set_path (g, \"../appliance\");
-
   filename = \"test1.img\";
   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
   if (fd == -1) {
   filename = \"test1.img\";
   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
   if (fd == -1) {