aboutsummaryrefslogtreecommitdiff
path: root/test.bash
blob: eb9c5c66ad5b3d20b1ccfa2e5756732c8b722f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 .