mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 15:33:16 +01:00
a424a2155b
All tests pass at the moment.
11 lines
145 B
Bash
Executable File
11 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
if [ ! -d build ]
|
|
then
|
|
./build.sh
|
|
fi
|
|
|
|
perl -MTest::Harness -e '$$Test::Harness::verbose=1; runtests @ARGV;' tests/*.t.pl
|