Skip to content

Commit 3e65888

Browse files
authored
Go: Enable AddressSanitizer in integration tests (valkey-io#3725)
Enable AddressSanitizer in integ-test runs Signed-off-by: Jonathan Louie <Jonathan.Louie@improving.com>
1 parent 2f6b7e9 commit 3e65888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ modules-test: __it
143143
__it:
144144
mkdir -p reports
145145
set -o pipefail; \
146-
go test -v ./integTest/... \
146+
CC="gcc -fsanitize=address" go test -v ./integTest/... \
147147
$(TEST_FILTER) \
148148
$(if $(filter true, $(tls)), --tls,) \
149149
$(if $(standalone-endpoints), --standalone-endpoints=$(standalone-endpoints)) \

0 commit comments

Comments
 (0)