From 88ea2eef1a57844902054cee235f87b1892a2e74 Mon Sep 17 00:00:00 2001 From: Joe Finney Date: Wed, 13 Sep 2017 13:41:58 -0700 Subject: [PATCH] Enable go race detection for bazel tests. There are a couple tests that need to run without race detection enabled. See issue 39649 for details. Kubernetes-commit: d4676b67539419aced720772b13f556de8065fc1 --- tools/cache/BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/cache/BUILD b/tools/cache/BUILD index 65deccf7..94e020d8 100644 --- a/tools/cache/BUILD +++ b/tools/cache/BUILD @@ -22,6 +22,7 @@ go_test( "store_test.go", "undelta_store_test.go", ], + features = ["-race"], library = ":go_default_library", deps = [ "//vendor/github.com/google/gofuzz:go_default_library",