You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by da...@apache.org on 2018/08/16 14:19:14 UTC

[trafficserver] branch master updated: Disables openclose_h2 test.

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

dagit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new ff074f2  Disables openclose_h2 test.
ff074f2 is described below

commit ff074f25d1ea9504d68efa8dafe9b597e485d442
Author: Derek Dagit <de...@oath.com>
AuthorDate: Wed Aug 15 11:23:18 2018 -0500

    Disables openclose_h2 test.
    
    This test is brittle and repeatedly errors when it runs, yielding false negatives.
    
    This commit permanently skips the test.
---
 tests/gold_tests/continuations/openclose_h2.test.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/gold_tests/continuations/openclose_h2.test.py b/tests/gold_tests/continuations/openclose_h2.test.py
index 2679d2d..483b38c 100644
--- a/tests/gold_tests/continuations/openclose_h2.test.py
+++ b/tests/gold_tests/continuations/openclose_h2.test.py
@@ -20,6 +20,8 @@ import os
 Test.Summary = '''
 Test transactions and sessions for http2, making sure they open and close in the proper order.
 '''
+
+Test.SkipIf(Condition.true('This test errors frequently, and so it is disabled.'))
 Test.SkipUnless(
     Condition.HasProgram("curl", "Curl needs to be installed on system for this test to work"),
     Condition.HasCurlFeature('http2')