export LSAN_OPTIONS="suppressions=$(pwd)/test/lsan_suppress.txt"
export CC
+TEST_CMD="python3 -m pytest --maxfail=99 test/"
+
# Standard build
for CC in gcc gcc-6 clang; do
mkdir build-${CC}; cd build-${CC}
sudo chown root:root util/fusermount3
sudo chmod 4755 util/fusermount3
- TEST_WITH_VALGRIND=true python3 -m pytest test/
+ TEST_WITH_VALGRIND=true ${TEST_CMD}
cd ..
done
(cd build-$CC; sudo ninja install)
ninja
# Test as root and regular user
- sudo python3 -m pytest test/
+ sudo ${TEST_CMD}
sudo chown root:root util/fusermount3
sudo chmod 4755 util/fusermount3
- python3 -m pytest test/
+ ${TEST_CMD}
cd ..
done
./makeconf.sh
./configure
make
-sudo python3 -m pytest test/
+sudo ${TEST_CMD}
sudo make install
# Documentation