From 6e4f9be4929118c4a571f60ea10d370aa35360fb Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 12 Mar 2013 12:35:17 +0000 Subject: [PATCH] php: Pass all libvirt environment variables down to PHP test scripts. Including LIBVIRTD_* and VIRTLOCKD_*. This updates commit cd40cf713991569e51b42742177e57f3dca148bc. --- php/run-php-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/run-php-tests.sh b/php/run-php-tests.sh index 46a18a42e..3c23d8e77 100755 --- a/php/run-php-tests.sh +++ b/php/run-php-tests.sh @@ -39,7 +39,7 @@ unset LIBGUESTFS_TRACE # This makes a file containing the environment variables we want to set. rm -f env echo "PATH=$PATH" > env -printenv | grep -E '^(LIBGUESTFS_|LIBVIRT_|LD_|MALLOC_)' >> env +printenv | grep -E '^(LIBGUESTFS|LIBVIRT|LIBVIRTD|VIRTLOCKD|LD|MALLOC)_' >> env TESTS=$(echo guestfs_php_*.phpt) echo TESTS: $TESTS