From 6537a33ab4f9ede94a43f1a9cb92a793cefbc9de Mon Sep 17 00:00:00 2001 From: Derek Dagit Date: Wed, 15 Aug 2018 11:23:18 -0500 Subject: [PATCH] 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 2679d2d275b..483b38c6d18 100644 --- a/tests/gold_tests/continuations/openclose_h2.test.py +++ b/tests/gold_tests/continuations/openclose_h2.test.py @@ -20,6 +20,8 @@ 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')