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

[trafficserver] branch master updated: Disables the double test for inconsistent execution

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

amc 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 8aeeca0  Disables the double test for inconsistent execution
8aeeca0 is described below

commit 8aeeca0d076069b2e6d00f8e56bf226a81d8c797
Author: Derek Dagit <de...@oath.com>
AuthorDate: Sat Aug 18 13:45:18 2018 -0500

    Disables the double test for inconsistent execution
    
    This test appears to be brittle, but it is being used to gate acceptance of pull request. Therefore it should be disabled by default
    until the inconsistency can be sorted out.
---
 tests/gold_tests/continuations/double.test.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/gold_tests/continuations/double.test.py b/tests/gold_tests/continuations/double.test.py
index 0c070ec..8509485 100644
--- a/tests/gold_tests/continuations/double.test.py
+++ b/tests/gold_tests/continuations/double.test.py
@@ -20,6 +20,7 @@ import os
 Test.Summary = '''
 Test transactions and sessions, making sure two continuations catch the same number of hooks.
 '''
+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")
 )