summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2016-02-29 14:45:44 -0500
committerRob Crittenden <rcritten@redhat.com>2016-02-29 16:09:17 -0500
commitae8c616ade2199ca26bd39374707d44a04be7db3 (patch)
treef7c308f5b24549a5c3f1d42547f5823a8b47caf7 /test
parent5b93aa509881c307050de41e88000c33e13080be (diff)
downloadmod_nss-ae8c616ade2199ca26bd39374707d44a04be7db3.tar.gz
mod_nss-ae8c616ade2199ca26bd39374707d44a04be7db3.tar.xz
mod_nss-ae8c616ade2199ca26bd39374707d44a04be7db3.zip
Fix test for DH cipher directive
Since we don't support ADH ciphers can just ignore DH-* Note that OpenSSL defines the DH- ciphers but does not implement them so the DH string support is there only for compatibility.
Diffstat (limited to 'test')
-rw-r--r--test/test_cipher.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_cipher.py b/test/test_cipher.py
index 4e69fc6..f1d39df 100644
--- a/test/test_cipher.py
+++ b/test/test_cipher.py
@@ -53,6 +53,8 @@ def assert_equal_openssl(ciphers):
continue
if not ENABLE_GCM and 'GCM' in o:
continue
+ if o.startswith('DH-'):
+ continue
if o in CIPHERS_NOT_IN_NSS:
continue
t.append(o)