]> wimlib.net Git - wimlib/commitdiff
test-imagex-ntfs: Skip tests when initial mount does not even work
authorEric Biggers <ebiggers3@gmail.com>
Wed, 15 May 2013 05:31:34 +0000 (00:31 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 15 May 2013 05:31:34 +0000 (00:31 -0500)
debian/wimlib-dev.dirs [deleted file]
debian/wimlib.dirs [deleted file]
tests/test-imagex-ntfs

diff --git a/debian/wimlib-dev.dirs b/debian/wimlib-dev.dirs
deleted file mode 100644 (file)
index 4418816..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/lib
-usr/include
diff --git a/debian/wimlib.dirs b/debian/wimlib.dirs
deleted file mode 100644 (file)
index 14f5b95..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/lib
-usr/bin
index ff67985af49911524a5ff7736980476b19ee3215..e1c8195e0d887fdf7c4db69faff0d3afc04fa7be 100755 (executable)
@@ -30,16 +30,16 @@ do_unmount() {
 }
 
 __do_mount() {
 }
 
 __do_mount() {
-       options="$3"
-       if [ -z "$options" ]; then
-               options="no_def_opts,silent"
-       else
-               options="$options,no_def_opts,silent"
-       fi
-       if ! ntfs-3g -o $options $1 $2; then
-               error "Could not mount NTFS volume \"$1\" on \"$2\"!  Make sure ntfs-3g is "\
-                     "installed, and that you are either running the tests as root or have ntfs-3g "\
-                     "installed setuid root, so that we can mount a NTFS volume."
+       if ! ntfs-3g -o "no_def_opts,silent" $1 $2; then
+               if [ $UID -ne 0 ] && [ "$3" = "nofail" ]; then
+                       echo "WARNING: skipping NTFS tests because we aren't able to "
+                       echo "mount a NTFS volume (perhaps ntfs-3g is not installed setuid root?)"
+                       exit 0
+               else
+                       error "Could not mount NTFS volume \"$1\" on \"$2\"!  Make sure ntfs-3g is "\
+                             "installed, and that you are either running the tests as root or have ntfs-3g "\
+                             "installed setuid root, so that we can mount a NTFS volume."
+               fi
        fi
 }
 
        fi
 }
 
@@ -61,7 +61,7 @@ init() {
        mkdir in.mnt out.mnt
        do_mkntfs in.ntfs
        do_mkntfs out.ntfs
        mkdir in.mnt out.mnt
        do_mkntfs in.ntfs
        do_mkntfs out.ntfs
-       do_mount in.ntfs in.mnt
+       do_mount in.ntfs in.mnt nofail
 }
 
 cleanup() {
 }
 
 cleanup() {