![Jakob Unterwurzacher](/assets/img/avatar_default.png)
"go vet" on Go 1.8 and older does not support flags: $ go version go version go1.8.3 linux/amd64 $ ./test.bash gocryptfs v1.4.1-27-g8c1b363 without_openssl; go-fuse v20170619-21-gcf21bc2; 2017-10-22 go1.8.3 gocryptfs v1.4.1-27-g8c1b363; go-fuse v20170619-21-gcf21bc2; 2017-10-22 go1.8.3 flag provided but not defined: -all usage: vet [-n] [-x] [build flags] [packages] Vet runs the Go vet command on the packages named by the import paths. For more about vet, see 'go doc cmd/vet'. For more about specifying packages, see 'go help packages'. To run the vet tool with specific options, run 'go tool vet'. The -n flag prints commands that would be executed. The -x flag prints commands as they are executed. For more about build flags, see 'go help build'. See also: go fmt, go fix. This reverts commit a1170be979cb75da11e84f45f67d3f5468d97669.
52 lines
1.2 KiB
Bash
Executable File
52 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
MYNAME=$(basename "$0")
|
|
TESTDIR=/tmp/gocryptfs-test-parent
|
|
LOCKFILE=$TESTDIR/$MYNAME.lock
|
|
|
|
mkdir -p $TESTDIR
|
|
|
|
(
|
|
# Prevent multiple parallel test.bash instances as this causes
|
|
# all kinds of mayham
|
|
if ! flock -n 200 ; then
|
|
echo "Could not acquire lock on $LOCKFILE - already running?"
|
|
exit 1
|
|
fi
|
|
|
|
# Clean up dangling filesystems
|
|
source tests/fuse-unmount.bash
|
|
for i in $(mount | grep $TESTDIR | cut -f3 -d" "); do
|
|
echo "Warning: unmounting leftover filesystem: $i"
|
|
fuse-unmount $i
|
|
done
|
|
|
|
./build-without-openssl.bash
|
|
# Building with openssl is difficult on OSX, so only do it on Linux.
|
|
if [[ $OSTYPE == linux* ]] ; then
|
|
./build.bash
|
|
fi
|
|
|
|
if go tool | grep vet > /dev/null ; then
|
|
go tool vet -all -shadow .
|
|
else
|
|
echo "'go tool vet' not available - skipping"
|
|
fi
|
|
|
|
# We don't want all the subprocesses holding the lock file open
|
|
go test ./... $* 200>&-
|
|
|
|
# The tests cannot to this themselves as they are run in parallel.
|
|
# Don't descend into possibly still mounted example filesystems.
|
|
rm -Rf --one-file-system $TESTDIR
|
|
|
|
if grep -R "panic(" internal ; then
|
|
echo "Please use log.Panic instead of naked panic!"
|
|
exit 1
|
|
fi
|
|
|
|
) 200> $LOCKFILE
|