From: Dr. Stephen Henson Date: Fri, 15 Apr 2011 20:09:34 +0000 (+0000) Subject: Add "post" option to fips_test_suite to run the POST only and exit. X-Git-Tag: OpenSSL-fips-2_0-rc1~545 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=75707a324f67bcaa9ea3b6a6bb167161db778ee3 Add "post" option to fips_test_suite to run the POST only and exit. --- diff --git a/fips/fips_test_suite.c b/fips/fips_test_suite.c index e07b6d6162..fac20d4ba1 100644 --- a/fips/fips_test_suite.c +++ b/fips/fips_test_suite.c @@ -892,6 +892,8 @@ int main(int argc,char **argv) FIPS_corrupt_drbg(); } else if (!strcmp(argv[1], "rng")) { fail_id = FIPS_TEST_X931; + } else if (!strcmp(argv[1], "post")) { + fail_id = -1; } else if (!strcmp(argv[1], "rngstick")) { do_rng_stick = 1; no_exit = 1;