You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ja...@apache.org on 2015/05/01 02:01:17 UTC

[2/4] trafficserver git commit: Mark the failures from TS-3518 as expected failures until a fix is committed

Mark the failures from TS-3518 as expected failures until a fix is committed


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/7759b247
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/7759b247
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/7759b247

Branch: refs/heads/master
Commit: 7759b24709625f1f6e619713108efed1526f8b3b
Parents: c4a1879
Author: Thomas Jackson <ja...@apache.org>
Authored: Thu Apr 30 16:47:21 2015 -0700
Committer: Thomas Jackson <ja...@apache.org>
Committed: Thu Apr 30 16:47:21 2015 -0700

----------------------------------------------------------------------
 ci/tsqa/tests/test_https.py | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/7759b247/ci/tsqa/tests/test_https.py
----------------------------------------------------------------------
diff --git a/ci/tsqa/tests/test_https.py b/ci/tsqa/tests/test_https.py
index a8914e6..9273b4f 100644
--- a/ci/tsqa/tests/test_https.py
+++ b/ci/tsqa/tests/test_https.py
@@ -20,6 +20,7 @@ import socket
 
 import helpers
 import tsqa.utils
+unittest = tsqa.utils.import_unittest()
 
 # some ciphers to test with
 CIPHER_MAP = {
@@ -266,8 +267,12 @@ class TestMix(helpers.EnvironmentCase, CertSelectionMixin):
         cert = self._get_cert(addr, ciphers=CIPHER_MAP['ecdsa'])
         self.assertEqual(cert.get_subject().commonName.decode(), 'www.example.com')
 
+    # TODO: remove once TS-3518 is resolved
+    @unittest.expectedFailure
     def test_intermediate_ca_rsa(self):
         self._intermediate_ca_t('rsa')
 
+    # TODO: remove once TS-3518 is resolved
+    @unittest.expectedFailure
     def test_intermediate_ca_ecdsa(self):
         self._intermediate_ca_t('ecdsa')