From a22ac2d1f83c40e03ef180a810607ad5fb1d1566 Mon Sep 17 00:00:00 2001 From: Masaori Koshiba Date: Thu, 9 Jul 2020 11:35:07 +0900 Subject: [PATCH] Disable openclose_h2 AuTest on 8.1.x --- tests/gold_tests/continuations/openclose_h2.test.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/gold_tests/continuations/openclose_h2.test.py b/tests/gold_tests/continuations/openclose_h2.test.py index f3bba8f7832..06c10be439b 100644 --- a/tests/gold_tests/continuations/openclose_h2.test.py +++ b/tests/gold_tests/continuations/openclose_h2.test.py @@ -20,6 +20,11 @@ Test.Summary = ''' Test transactions and sessions for http2, making sure they open and close in the proper order. ''' + +# Disable this test on the 8.1.x branch because this test is sensitive to timing issues of SSN/TXN close hook. +# 9.0.x+ should fix issues and enabled this test. Details in #6983. +Test.SkipIf(Condition.true("This test is sensitive to timing issues of SSN/TXN close hook which makes it flaky.")) + Test.SkipUnless( Condition.HasProgram("curl", "Curl needs to be installed on system for this test to work"), Condition.HasCurlFeature('http2')