Fix no-sm2 issue
authorPaul Yang <kaishen.yy@antfin.com>
Mon, 4 Nov 2019 03:49:35 +0000 (11:49 +0800)
committerPaul Yang <kaishen.yy@antfin.com>
Mon, 4 Nov 2019 03:49:35 +0000 (11:49 +0800)
Some code is not covered by the macros.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10319)

apps/speed.c

index 9d7bff0c31a2c200f2657a693e4a77a821e80b7e..7117c6f068811719ef38ce8a8a55282de938c534 100644 (file)
@@ -1713,10 +1713,14 @@ int speed_main(int argc, char **argv)
     int ecdsa_doit[ECDSA_NUM] = { 0 };
     int ecdh_doit[EC_NUM] = { 0 };
     int eddsa_doit[EdDSA_NUM] = { 0 };
+# ifndef OPENSSL_NO_SM2
     int sm2_doit[SM2_NUM] = { 0 };
+# endif
     OPENSSL_assert(OSSL_NELEM(test_curves) >= EC_NUM);
     OPENSSL_assert(OSSL_NELEM(test_ed_curves) >= EdDSA_NUM);
+# ifndef OPENSSL_NO_SM2
     OPENSSL_assert(OSSL_NELEM(test_sm2_curves) >= SM2_NUM);
+# endif
 #endif                          /* ndef OPENSSL_NO_EC */
 
     prog = opt_init(argc, argv, speed_options);