From 1e5011748e95674ccfa3b1b3fb5d4e2ceadfd5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20R=C3=B6nnblom?= Date: Wed, 24 Apr 2024 16:34:59 +0200 Subject: [PATCH] Skip xcmrelay binary attribute test case in non-TLS builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The xcmrelay binary attribute test case failed on non-TLS builds. Signed-off-by: Mattias Rönnblom --- test/test_xcmrelay.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_xcmrelay.py b/test/test_xcmrelay.py index c44a0613..f2fba323 100644 --- a/test/test_xcmrelay.py +++ b/test/test_xcmrelay.py @@ -252,6 +252,9 @@ def read_attr(filename): def test_stdin_attrs(): + if not config.has_tls(): + pytest.skip("no TLS") + proxy_addr = "tls:127.0.0.42:%d" % xtest.rand_port() server_addr = xtest.rand_ux()