lcov exclusion

This commit is contained in:
Frank Denis 2015-12-25 02:12:09 +01:00
parent d839d74c89
commit 61fbc8eb63

View File

@ -145,7 +145,7 @@ chacha_encrypt_bytes(chacha_ctx *ctx, const uint8_t *in, uint8_t *out,
unsigned long long i;
if (inlen > 64ULL * (1ULL << 32) - 64ULL) {
abort();
abort(); /* LCOV_EXCL_LINE */
}
s0 = LOAD_ALIGNED(chacha_const);
s1 = ctx->s1;