From: Daiki Ueno Date: Sun, 18 Feb 2024 20:00:17 +0000 (+0100) Subject: Skip sc-rsa-oaep-encrypt-test when compiled with mini-gmp. X-Git-Tag: nettle_3.10rc1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cf9c5350d1a455f72d3c36fac492aee3c8904e1;p=thirdparty%2Fnettle.git Skip sc-rsa-oaep-encrypt-test when compiled with mini-gmp. --- diff --git a/testsuite/rsa-oaep-encrypt-test.c b/testsuite/rsa-oaep-encrypt-test.c index 3d9808a5..511c2744 100644 --- a/testsuite/rsa-oaep-encrypt-test.c +++ b/testsuite/rsa-oaep-encrypt-test.c @@ -530,6 +530,10 @@ test_encrypt (void) void test_main (void) { +#if NETTLE_USE_MINI_GMP || WITH_EXTRA_ASSERTS + if (test_side_channel) + SKIP(); +#endif test_encrypt_decrypt (); test_encrypt (); }