From 581ef8bbe7ee042631b1dbe3a8ca28ff1315c1fc Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Thu, 26 Oct 2017 11:55:59 -0400 Subject: [PATCH] Marx as xfail since it seems to be problematic Looks like the sizeof fields changed between 2.7 and 2.8 and lead to serialization problem on event creation sessiond side. Since no response is sent it can also end up in a hang app side. Signed-off-by: Jonathan Rajotte --- .../tests/ust_app_vs_ust_tools/test_ust_app_vs_ust_tools.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lttng_ivc/tests/ust_app_vs_ust_tools/test_ust_app_vs_ust_tools.py b/lttng_ivc/tests/ust_app_vs_ust_tools/test_ust_app_vs_ust_tools.py index e965af5..48d7693 100644 --- a/lttng_ivc/tests/ust_app_vs_ust_tools/test_ust_app_vs_ust_tools.py +++ b/lttng_ivc/tests/ust_app_vs_ust_tools/test_ust_app_vs_ust_tools.py @@ -93,6 +93,10 @@ def lttng_sessiond_ready(): @pytest.mark.parametrize("ust_label,tools_label, should_trace", runtime_matrix_tracing_available) def test_ust_app_tracing_available(tmpdir, ust_label, tools_label, should_trace): + if ((ust_label == "lttng-ust-2.7" and tools_label == "lttng-tools-2.8") or + (ust_label == "lttng-ust-2.8" and tools_label == "lttng-tools-2.7")): + pytest.xfail("FAiling but should work, problem regarding the size of fields structure") + nb_events = 100 # Prepare environment -- 2.34.1