166ba74a05
...and fix reported errors: internal/fusefrontend_reverse/rfile.go:40: github.com/rfjakob/gocryptfs/internal/contentenc.FileHeader composite literal uses unkeyed fields internal/fusefrontend_reverse/rfs.go:249: github.com/hanwen/go-fuse/fuse.DirEntry composite literal uses unkeyed fields internal/fusefrontend_reverse/rfs.go:264: github.com/hanwen/go-fuse/fuse.DirEntry composite literal uses unkeyed fields
17 lines
322 B
Bash
Executable File
17 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
source build.bash
|
|
|
|
go test ./... $*
|
|
|
|
# Clean up after ourself, but don't descend into possibly still mounted
|
|
# example filesystems.
|
|
# The tests cannot to this themselves as they are run in parallel
|
|
rm -Rf --one-file-system /tmp/gocryptfs-test-parent
|
|
|
|
go tool vet -all -shadow .
|