mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
64b01a0869
Should prevent things like https://github.com/vgough/encfs/issues/343 from happening again.
11 lines
300 B
Bash
Executable File
11 lines
300 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
./build/checkops &> /dev/null
|
|
|
|
for i in $(mount | grep -e "/tmp/encfs-reverse-tests-\|/tmp/encfs-tests-" | cut -f3 -d" "); do
|
|
echo "Warning: unmounting leftover filesystem: $i"
|
|
fusermount -u $i
|
|
done
|
|
|
|
perl -MTest::Harness -e '$$Test::Harness::debug=1; runtests @ARGV;' tests/*.t.pl
|