summaryrefslogtreecommitdiff
path: root/tests/alltests.py
diff options
context:
space:
mode:
authorHeikki Toivonen <heikki@heikkitoivonen.net>2006-10-31 18:41:27 +0000
committerHeikki Toivonen <heikki@heikkitoivonen.net>2006-10-31 18:41:27 +0000
commit13db5e4cc612082cbe472f488dc7eb1d95c54e8c (patch)
treea88a8052dc4ce8b0638a410fa84a642166f7a339 /tests/alltests.py
parent3d0de0d26cead9c13eae93dc9d543b5b8f8c49ff (diff)
downloadm2crypto-13db5e4cc612082cbe472f488dc7eb1d95c54e8c.tar.gz
Bug 6018, added support for remaining ECs, by Larry Bugbee.
git-svn-id: http://svn.osafoundation.org/m2crypto/trunk@477 2715db39-9adf-0310-9c64-84f055769b4b
Diffstat (limited to 'tests/alltests.py')
-rw-r--r--tests/alltests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/alltests.py b/tests/alltests.py
index 4136b45..9d703d1 100644
--- a/tests/alltests.py
+++ b/tests/alltests.py
@@ -26,6 +26,7 @@ def suite():
if m2.OPENSSL_VERSION_NUMBER >= 0x90800F and m2.OPENSSL_NO_EC == 0:
modules_to_test.append('test_ecdh')
modules_to_test.append('test_ecdsa')
+ modules_to_test.append('test_ec_curves')
alltests = unittest.TestSuite()
for module in map(__import__, modules_to_test):
alltests.addTest(module.suite())