From: Eric S. Raymond Date: Tue, 1 Aug 2017 23:55:34 +0000 (-0400) Subject: Exclude %V from coverage since we removed it from the test suite. X-Git-Tag: 1.3~1 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;ds=sidebyside;h=06c8c9773895430279e4c0e1aaf1e97ca3a86f0d;p=open-adventure.git Exclude %V from coverage since we removed it from the test suite. --- 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;