From 06c8c9773895430279e4c0e1aaf1e97ca3a86f0d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 1 Aug 2017 19:55:34 -0400 Subject: [PATCH] Exclude %V from coverage since we removed it from the test suite. --- misc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc.c b/misc.c index 25808a2..ba2e2af 100644 --- a/misc.c +++ b/misc.c @@ -93,6 +93,7 @@ static void vspeak(const char* msg, bool blank, va_list ap) } } + // LCOV_EXCL_START - doesn't occur in test suite. /* Version specifier */ if (msg[i] == 'V') { strcpy(renderp, VERSION); @@ -100,6 +101,7 @@ static void vspeak(const char* msg, bool blank, va_list ap) renderp += len; size -= len; } + // LCOV_EXCL_STOP } } *renderp = 0; -- 2.31.1