diff options
Diffstat (limited to 'test.bash')
-rwxr-xr-x | test.bash | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -2,11 +2,10 @@ set -eux -cd cryptfs -go build -go test -cd .. +for i in ./cryptfs . +do -go build -go test + go build $i + go test $i +done |