Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-30 01:01:09 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-12-05 23:05:44 +0400
commitd086c1203c062c35911c240d55b8c0b06fe9b64f (patch)
tree83ce406f28148c744dbdf3b879094201fcdd9feb /libavutil/des.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/des.c')
-rw-r--r--libavutil/des.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/des.c b/libavutil/des.c
index b876dccd53..e1c0ebcbfb 100644
--- a/libavutil/des.c
+++ b/libavutil/des.c
@@ -337,6 +337,7 @@ void av_des_mac(AVDES *d, uint8_t *dst, const uint8_t *src, int count) {
}
#ifdef TEST
+// LCOV_EXCL_START
#undef printf
#undef rand
#undef srand
@@ -443,4 +444,5 @@ int main(void) {
#endif
return 0;
}
+// LCOV_EXCL_STOP
#endif