You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by sa...@apache.org on 2019/12/06 15:07:47 UTC

[incubator-milagro-crypto-c] 08/10: remove unnecessary clause from rsa tests

This is an automated email from the ASF dual-hosted git repository.

sandreoli pushed a commit to branch issue51
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-crypto-c.git

commit 363552b359c34baf33a9656ce2e1a92f00c37495
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Wed Dec 4 11:30:18 2019 +0000

    remove unnecessary clause from rsa tests
---
 test/CMakeLists.txt | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 851ada9..1033a82 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -219,14 +219,12 @@ endforeach()
 # RSA Tests
 ################################################
 foreach(level ${AMCL_RSA})
-  if (NOT level STREQUAL "8192")
-    amcl_rsa_field(BD "${level}")
-    amcl_rsa_field(TFF "${level}")
-
-    amcl_rsa_test(${level} test_big_arithmetics_${BD} test_big_arithmetics_XXX.c.in amcl_rsa_${TFF} "SUCCESS" "big/test_vector_big.txt")
-    amcl_rsa_test(${level} test_big_consistency_${BD} test_big_consistency_XXX.c.in amcl_rsa_${TFF} "SUCCESS")
-    amcl_rsa_test(${level} test_rsa_${TFF}            test_rsa_WWW.c.in             amcl_rsa_${TFF} "SUCCESS")
-  endif()  
+  amcl_rsa_field(BD "${level}")
+  amcl_rsa_field(TFF "${level}")
+
+  amcl_rsa_test(${level} test_big_arithmetics_${BD} test_big_arithmetics_XXX.c.in amcl_rsa_${TFF} "SUCCESS" "big/test_vector_big.txt")
+  amcl_rsa_test(${level} test_big_consistency_${BD} test_big_consistency_XXX.c.in amcl_rsa_${TFF} "SUCCESS")
+  amcl_rsa_test(${level} test_rsa_${TFF}            test_rsa_WWW.c.in             amcl_rsa_${TFF} "SUCCESS")
 endforeach()
 
 ################################################