From e1ceee2877f15ceb2bbdd2027c3aca43c64e0c7f Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Mon, 19 Aug 2024 13:49:31 -0400 Subject: [PATCH] Always enable race detection while running tests --- 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