From 4a8b4f422963db0df984b17dae81e32bf5cd2c5c Mon Sep 17 00:00:00 2001 From: Vitah Lin Date: Wed, 10 Apr 2024 14:59:45 +0800 Subject: [PATCH] Rename redis.info to valkey.info in LCOV (#259) Signed-off-by: Vitah Lin --- src/.gitignore | 2 +- src/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/.gitignore b/src/.gitignore index aee7aacf0..8cd119819 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1,5 +1,5 @@ *.gcda *.gcno *.gcov -redis.info +valkey.info lcov-html diff --git a/src/Makefile b/src/Makefile index ad22fd8fa..4799fa2f5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -518,8 +518,8 @@ check: test lcov: $(MAKE) gcov @(set -e; cd ..; ./runtest --clients 1) - @geninfo -o redis.info . - @genhtml --legend -o lcov-html redis.info + @geninfo -o valkey.info . + @genhtml --legend -o lcov-html valkey.info .PHONY: lcov