summaryrefslogtreecommitdiff
path: root/libavutil/aes.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-29 22:01:09 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-12-05 20:05:44 +0100
commitd086c1203c062c35911c240d55b8c0b06fe9b64f (patch)
tree83ce406f28148c744dbdf3b879094201fcdd9feb /libavutil/aes.c
parent840ecc9e075a0268884141eb25e4f2dc3f35d9dc (diff)
Add coverage exclusions for test code.
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 <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r--libavutil/aes.c2
1 files changed, 2 insertions, 0 deletions
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 <string.h>
#include "lfg.h"
#include "log.h"
@@ -331,4 +332,5 @@ int main(int argc, char **argv)
}
return err;
}
+// LCOV_EXCL_STOP
#endif