diff options
author | Reimar Döffinger <[email protected]> | 2011-11-29 22:01:09 +0100 |
---|---|---|
committer | Reimar Döffinger <[email protected]> | 2011-12-05 20:05:44 +0100 |
commit | d086c1203c062c35911c240d55b8c0b06fe9b64f (patch) | |
tree | 83ce406f28148c744dbdf3b879094201fcdd9feb /libavutil/base64.c | |
parent | 840ecc9e075a0268884141eb25e4f2dc3f35d9dc (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 <[email protected]>
Diffstat (limited to 'libavutil/base64.c')
-rw-r--r-- | libavutil/base64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/base64.c b/libavutil/base64.c index 1b70fa9f33..4ccc12e76e 100644 --- a/libavutil/base64.c +++ b/libavutil/base64.c @@ -100,6 +100,7 @@ char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size) } #ifdef TEST +// LCOV_EXCL_START #undef printf @@ -161,4 +162,5 @@ int main(void) return error_count; } +// LCOV_EXCL_STOP #endif |