rsa: ignore performance test in CI

Even with a static key the performance vary a lot between different builds.
This commit is contained in:
Marius Vikhammer 2020-03-19 14:16:39 +08:00
parent 207914a13a
commit 2f5e4601ef

View file

@ -306,7 +306,7 @@ static void print_rsa_details(mbedtls_rsa_context *rsa)
}
#endif
TEST_CASE("test performance RSA key operations", "[bignum]")
TEST_CASE("test performance RSA key operations", "[bignum][ignore]")
{
for (int keysize = 2048; keysize <= 4096; keysize += 2048) {
rsa_key_operations(keysize, true, false, false);