Add flag to run all tests (#1710)

This allows CI to run the full set of tests while making local
development faster.
This commit is contained in:
Andrew Gaul
2021-07-02 08:41:47 +09:00
committed by GitHub
parent fe44355d25
commit 9cfa177af0
2 changed files with 20 additions and 14 deletions

View File

@ -177,7 +177,7 @@ jobs:
make check -C src
echo "user_allow_other" | sudo tee -a /etc/fuse.conf >/dev/null
if [ -f /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs ]; then /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs; elif [ -f /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse ]; then /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse; else exit 1; fi
make check -C test || (test/filter-suite-log.sh test/test-suite.log; exit 1)
make ALL_TESTS=1 check -C test || (test/filter-suite-log.sh test/test-suite.log; exit 1)
#
# Local variables: