mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
11 lines
300 B
Bash
11 lines
300 B
Bash
|
#!/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
|