From 4fa6320c11881c0999e046e073be2a6ff37a282c Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 18 May 2013 11:17:44 -0500 Subject: [PATCH] test-imagex-mount: Check for /dev/fuse both readable and writable --- tests/test-imagex-mount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-imagex-mount b/tests/test-imagex-mount index a75c4cd8..d5bfbcad 100755 --- a/tests/test-imagex-mount +++ b/tests/test-imagex-mount @@ -48,8 +48,8 @@ init() { imagex capture tmp.empty empty.wim --norpfix } -if [ ! -r /dev/fuse ]; then - echo "WARNING: /dev/fuse is not readable." +if [ ! -r /dev/fuse ] || [ ! -w /dev/fuse ]; then + echo "WARNING: /dev/fuse is not readable and writable." echo "Skipping WIM mounting checks" skip_test fi -- 2.43.0