summaryrefslogtreecommitdiff
path: root/test.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-02-16 19:13:03 +0100
committerJakob Unterwurzacher2017-02-16 19:13:03 +0100
commitb66d663ff82db03c06be1149be3fd0ce15f8c19d (patch)
tree4cd5fa698cc7155f24b4c8f40ee8ebd7d77905ef /test.bash
parente5bee6a6aaa1e5be2a45b16526f65d4ed6b0d8fe (diff)
tests: OSX compat: use "mount" command instead of /proc/mounts
Mac OS X does not have /proc. Reported at https://github.com/rfjakob/gocryptfs/issues/15#issuecomment-279130217
Diffstat (limited to 'test.bash')
-rwxr-xr-xtest.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.bash b/test.bash
index 305d135..e1046c4 100755
--- a/test.bash
+++ b/test.bash
@@ -19,7 +19,7 @@ fi
# Clean up dangling filesystems
source tests/fuse-unmount.bash
-for i in $(cat /proc/mounts | grep $TESTDIR | cut -f2 -d" "); do
+for i in $(mount | grep $TESTDIR | cut -f3 -d" "); do
echo "Warning: unmounting leftover filesystem: $i"
fuse-unmount $i
done