Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2021-03-23 08:05:25 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-03-23 08:10:39 +0300
commit2b0d654d661e4ad031b652760f56c9d086d62c90 (patch)
treeb767c84d49c00486ed8884e2663f23ef64ac89a5 /Makefile.util.mk
parentc07661daf1c4d5ac64d25d67e8f707bbfe36ea54 (diff)
Fix data race in test
Diffstat (limited to 'Makefile.util.mk')
-rw-r--r--Makefile.util.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.util.mk b/Makefile.util.mk
index 5d5355e4..8d470564 100644
--- a/Makefile.util.mk
+++ b/Makefile.util.mk
@@ -14,7 +14,7 @@ test: .GOPATH/.ok gitlab-pages
go test $(if $V,-v) $(allpackages) 2>&1 | tee tests.out
race: .GOPATH/.ok gitlab-pages
- CGO_ENABLED=1 go test -race $(if $V,-v) $(allpackages)
+ CGO_ENABLED=1 go test -race $(if $V,-v) $(allpackages) 2>&1 | tee tests.out
acceptance: .GOPATH/.ok gitlab-pages
go test $(if $V,-v) ./test/acceptance ${ARGS} 2>&1 | tee tests.out