From db332db0255e8f4f0e3a8e8eae40f61a1e13ea9a Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Tue, 10 Sep 2024 17:21:03 +0800 Subject: [PATCH] Makefile: add `-test.v` for `make itest` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5568b0b20..cb010bba5 100644 --- a/Makefile +++ b/Makefile @@ -208,7 +208,7 @@ endif itest-only: db-instance @$(call print, "Running integration tests with ${backend} backend.") rm -rf itest/*.log itest/.logs-*; date - EXEC_SUFFIX=$(EXEC_SUFFIX) scripts/itest_part.sh 0 1 $(TEST_FLAGS) $(ITEST_FLAGS) + EXEC_SUFFIX=$(EXEC_SUFFIX) scripts/itest_part.sh 0 1 $(TEST_FLAGS) $(ITEST_FLAGS) -test.v $(COLLECT_ITEST_COVERAGE) #? itest: Build and run integration tests