From 6e4157da355c72eb7a0726ec51b9352337a3877c Mon Sep 17 00:00:00 2001 From: James Shubin Date: Sat, 3 Jun 2017 01:34:02 -0400 Subject: [PATCH] test: Remove debugging echo from go vet test I accidentally left it in which totally defeats the point of tests! --- test/test-govet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-govet.sh b/test/test-govet.sh index 4cfa9407..ebeec4d3 100755 --- a/test/test-govet.sh +++ b/test/test-govet.sh @@ -42,9 +42,9 @@ for dir in `find . -maxdepth 5 -type d -not -path './old/*' -not -path './old' - #echo "matching: $match" if [[ -z $(echo "${GO_VERSION[2]}" | grep -E 'go1.2|go1.3|go1.4|go1.5|go1.6|go1.7|go1.8') ]]; then # workaround go vet issues by adding the new -source flag (go1.9+) - echo run-test go vet -source "$match" || fail_test "go vet -source did not pass pkg" + run-test go vet -source "$match" || fail_test "go vet -source did not pass pkg" else - echo run-test go vet "$match" || fail_test "go vet did not pass pkg" # since it doesn't output an ok message on pass + run-test go vet "$match" || fail_test "go vet did not pass pkg" # since it doesn't output an ok message on pass fi done