X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fuse%2Ftest-fuse.sh;h=1accd896fdb359549040a3d380fbc07d2c928a3b;hb=c4381dba737d5cb8aad8e1b2e2123b0fcaff1d1a;hp=cfa277aa603a75da11c8c1f02b6bed8a6e7b4694;hpb=f7d18c84dde596699ffc5100fec2cf7b0d582450;p=libguestfs.git diff --git a/fuse/test-fuse.sh b/fuse/test-fuse.sh index cfa277a..1accd89 100755 --- a/fuse/test-fuse.sh +++ b/fuse/test-fuse.sh @@ -14,12 +14,22 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. unset CDPATH set -e #set -v +if [ ! -w /dev/fuse ]; then + echo "SKIPPING guestmount test, because there is no /dev/fuse." + exit 0 +fi + +if ! setfacl --help >/dev/null 2>&1; then + echo "SKIPPING guestmount test, because setfacl is not installed." + exit 0 +fi + if [ -z "$top_builddir" ]; then echo "$0: error: environment variable \$top_builddir must be set" exit 1