From: Ben Laurie Date: Wed, 9 Jun 1999 10:19:53 +0000 (+0000) Subject: Make "make test" fail if bntest fails an internal selfcheck. X-Git-Tag: OpenSSL_0_9_4~209 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=233bf734d3dc2033ab24578fa9bf83a1e8e6b97e;p=oweals%2Fopenssl.git Make "make test" fail if bntest fails an internal selfcheck. --- diff --git a/CHANGES b/CHANGES index fd6f2a2d36..a4ae465508 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,12 @@ Changes between 0.9.3a and 0.9.4 + *) When bntest is run from "make test" it drives bc to check its + calculations, as well as internally checking them. If an internal check + fails, it needs to cause bc to give a non-zero result or make test carries + on without noticing the failure. Fixed. + [Ben Laurie] + *) DES library cleanups. [Ulf Möller] diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index d0e9be6cda..c9bd0b8773 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -212,6 +212,7 @@ int main(int argc, char *argv[]) /**/ exit(0); err: + BIO_puts(out,"1\n"); /* make sure bc fails if we are piping to it */ ERR_load_crypto_strings(); ERR_print_errors(out); exit(1);