We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1660f9c commit 8182ac3Copy full SHA for 8182ac3
Makefile
@@ -232,6 +232,10 @@ flake-unit-race:
232
@$(call print, "Flake hunting races in unit tests.")
233
while [ $$? -eq 0 ]; do make unit-race nocache=1; done
234
235
+flake-unit-race-trace:
236
+ @$(call print, "Flake hunting races in unit tests.")
237
+ while [ $$? -eq 0 ]; do make unit-race log='stdout trace' nocache=1; done
238
+
239
# =============
240
# FUZZING
241
make/testing_flags.mk
@@ -74,6 +74,7 @@ endif
74
# are provided, we default to "nolog" which will be silent.
75
ifneq ($(log),)
76
LOG_TAGS := ${log}
77
+TEST_FLAGS += -test.v
78
else
79
LOG_TAGS := nolog
80
endif
0 commit comments