From a2853f8307172db1ac3d0faa0d9ca221633bab05 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Wed, 23 Oct 2024 06:57:34 -0600 Subject: [PATCH] Squashed 'release-tools/' changes from 988496a1f..227577e00 227577e00 Merge pull request #258 from gnufied/enable-race-detection e1ceee287 Always enable race detection while running tests git-subtree-dir: release-tools git-subtree-split: 227577e00e93c3db4e732df1a71e37676fa33bfd --- build.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.make b/build.make index fe120c52b9..5d30793081 100644 --- a/build.make +++ b/build.make @@ -62,9 +62,9 @@ IMAGE_NAME=$(REGISTRY_NAME)/$* ifdef V # Adding "-alsologtostderr" assumes that all test binaries contain glog. This is not guaranteed. -TESTARGS = -v -args -alsologtostderr -v 5 +TESTARGS = -race -v -args -alsologtostderr -v 5 else -TESTARGS = +TESTARGS = -race endif # Specific packages can be excluded from each of the tests below by setting the *_FILTER_CMD variables