test: specify test directories

This commit is contained in:
Gyu-Ho Lee 2016-06-30 21:25:21 -07:00
parent 74f09e7939
commit a27085335f
1 changed files with 2 additions and 2 deletions

4
test
View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
TEST=./...;
FMT="*.go"
TEST="./agent ./analyze ./control ./remotestorage ./upload"
FMT="./agent/*.go ./analyze/*.go ./control/*.go ./remotestorage/*.go ./upload/*.go"
echo "Running tests...";
go test -v -cover -cpu 1,2,4 $TEST;