mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
22a88c0e48
Unmounting leftover mounts is a convenience function for developers, but it would need to be expanded to work on MacOS and FreeBSD, which adds more complexity. Let's keep test.sh at the bare minimum that is needed for its purpose: running the tests.
11 lines
328 B
Bash
Executable File
11 lines
328 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
# Make sure we are in the directory this script is in.
|
|
cd "$(dirname "$0")"
|
|
|
|
# This is very noisy so run it silently at first. Run it again with
|
|
# output if the first run fails.
|
|
./build/checkops &> /dev/null || ./build/checkops
|
|
|
|
perl -MTest::Harness -e '$$Test::Harness::debug=1; runtests @ARGV;' tests/*.t.pl
|