From 06a66f8d868be2f29e3b1fd593c597c340ab2236 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Thu, 24 Oct 2024 06:41:36 -0600 Subject: [PATCH] Squashed 'release-tools/' changes from 988496a..227577e 227577e Merge pull request #258 from gnufied/enable-race-detection e1ceee2 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 fe120c52..5d307930 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