diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-09-29 17:24:12 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-10-02 16:51:56 -0400 |
commit | ab724bb6f8dc2a450004a7b9bc6d8ef4c4346482 (patch) | |
tree | 20953e81b424430b1daaa4cf5adcd0bf661a4f88 | |
parent | 9318b09667ae2c2546ed508721599505fc6e0b26 (diff) | |
download | mod_nss-ab724bb6f8dc2a450004a7b9bc6d8ef4c4346482.tar.gz mod_nss-ab724bb6f8dc2a450004a7b9bc6d8ef4c4346482.tar.xz mod_nss-ab724bb6f8dc2a450004a7b9bc6d8ef4c4346482.zip |
Add -DH as another exclusion in the SSLv3 cipher test
make check was failing in Fedora rawhide
-rw-r--r-- | test/test_cipher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_cipher.py b/test/test_cipher.py index 2c27796..719e8b1 100644 --- a/test/test_cipher.py +++ b/test/test_cipher.py @@ -130,7 +130,7 @@ class test_ciphers(object): # skipping COMPLEMENTOFDEFAULT as these are all ADH ciphers def test_SSLv3(self): - assert_equal_openssl("SSLv3", "SSLv3:-KRB5:-PSK:-ADH:-EDH:-SEED:-IDEA") + assert_equal_openssl("SSLv3", "SSLv3:-KRB5:-PSK:-ADH:-EDH:-DH:-SEED:-IDEA") def test_SSLv3_equals_TLSv1(self): (nss, err, rc) = run([exe, "--o", "SSLv3"]) |