Browse Source

chore(test.sh): move gofmt check to the end of testing

So it won't be blocked on gofmt check.
Yicheng Qin 11 years ago
parent
commit
915cc53d83
1 changed files with 7 additions and 7 deletions
  1. 7 7
      test.sh

+ 7 - 7
test.sh

@@ -2,13 +2,6 @@
 
 
 . ./build
 . ./build
 
 
-fmtRes=`gofmt -l $GOFMTPATH`
-if [ "$fmtRes" != "" ]; then
-	echo "Failed to pass golang format checking."
-	echo "Please gofmt modified go files, or run './build --fmt'."
-	exit 1
-fi
-
 go test -i ./http
 go test -i ./http
 go test -v ./http
 go test -v ./http
 
 
@@ -32,3 +25,10 @@ go test -v ./mod/lock/v2/tests
 
 
 go test -i ./tests/functional
 go test -i ./tests/functional
 ETCD_BIN_PATH=$(pwd)/bin/etcd go test -v ./tests/functional
 ETCD_BIN_PATH=$(pwd)/bin/etcd go test -v ./tests/functional
+
+fmtRes=`gofmt -l $GOFMTPATH`
+if [ "$fmtRes" != "" ]; then
+	echo "Failed to pass golang format checking."
+	echo "Please gofmt modified go files, or run './build --fmt'."
+	exit 1
+fi