From d086c1203c062c35911c240d55b8c0b06fe9b64f Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Tue, 29 Nov 2011 22:01:09 +0100 Subject: Add coverage exclusions for test code. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some of the code e.g. doing timing measurements there is no real point in running regression testing on it, thus it should not be counted against coverage. Signed-off-by: Reimar Döffinger --- libavutil/aes.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavutil/aes.c') diff --git a/libavutil/aes.c b/libavutil/aes.c index af55261864..46b290ccc4 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -259,6 +259,7 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) } #ifdef TEST +// LCOV_EXCL_START #include #include "lfg.h" #include "log.h" @@ -331,4 +332,5 @@ int main(int argc, char **argv) } return err; } +// LCOV_EXCL_STOP #endif -- cgit v1.2.3