mirror of
https://github.com/vgough/encfs.git
synced 2025-07-16 12:25:37 +02:00
25 lines
486 B
Bash
Executable File
25 lines
486 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
# Make sure we are in the directory this script is in.
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ -d build ] ; then
|
|
cd build
|
|
else
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
fi
|
|
make -j$(nproc)
|
|
cd ..
|
|
|
|
#if [ ! -d ~/fuse-xfstests ] ; then
|
|
# cd ~
|
|
# git clone https://github.com/rfjakob/fuse-xfstests
|
|
# cd fuse-xfstests
|
|
# make
|
|
# cd "$(dirname "$0")"
|
|
#fi
|
|
|
|
perl -I. -MTest::Harness -e '$Test::Harness::debug=1; $Test::Harness::verbose=1; runtests @ARGV;' integration/*.t.pl
|