From 5efa13ca7ebb78b5e69ae8a1786a296a26822129 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 31 May 2014 18:20:03 +0100 Subject: [PATCH] Add option to run all prime tests. --- apps/speed.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/speed.c b/apps/speed.c index 00a7f1906f..08165651be 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -1018,6 +1018,11 @@ int MAIN(int argc, char **argv) prime_doit[D_PRIME_TRIAL_DIVISION_RETRY] = 1; else if (strcmp(*argv,"prime-coprime") == 0) prime_doit[D_PRIME_COPRIME] = 1; + else if (strcmp(*argv,"prime") == 0) + { + for (i=0; i < PRIME_NUM; i++) + prime_doit[i]=1; + } else { BIO_printf(bio_err,"Error: bad option or value\n"); -- 2.25.1