Переглянути джерело

test.bash: limit running go test to integration_test.go only

Change-Id: Ib2e96183b99deddbbd3132cd2ca6fa34a25994c6
Reviewed-on: https://go-review.googlesource.com/c/164645
Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
Herbie Ong 7 роки тому
батько
коміт
4b465c007f
2 змінених файлів з 2 додано та 2 видалено
  1. 1 1
      regenerate.bash
  2. 1 1
      test.bash

+ 1 - 1
regenerate.bash

@@ -4,5 +4,5 @@
 # license that can be found in the LICENSE file.
 
 cd "$(git rev-parse --show-toplevel)"
-go test -v -timeout 60m -tags integration "$@" -regenerate
+go test -v -timeout 60m integration_test.go "$@" -regenerate
 exit $?

+ 1 - 1
test.bash

@@ -4,5 +4,5 @@
 # license that can be found in the LICENSE file.
 
 cd "$(git rev-parse --show-toplevel)"
-go test -v -timeout 60m -tags integration "$@"
+go test -v -timeout 60m integration_test.go "$@"
 exit $?