From 3e6fff260b27e0e11fbbae5d13c73655a6e36ddf Mon Sep 17 00:00:00 2001 From: Kyle Lemons Date: Thu, 19 Apr 2012 23:14:40 -0700 Subject: [PATCH] Only test testable packages --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index ecd570e..990b206 100755 --- a/test.sh +++ b/test.sh @@ -32,7 +32,7 @@ done popd >/dev/null echo "Testing packages..." -PACKAGES=$(find . -name "*.go" -exec dirname {} \; | sort | uniq | egrep -v "^\.$|ae") +PACKAGES=$(find . -name "*_test.go" -exec dirname {} \; | sort | uniq) go test -i ${PACKAGES} go test ${PACKAGES}