From eaf778431dd0039771d4acdcedc4e14baea078b7 Mon Sep 17 00:00:00 2001 From: firewave Date: Mon, 27 Jan 2025 20:24:34 +0100 Subject: [PATCH] test/cli/other_test.py: xfail'd some test regressions --- test/cli/other_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/cli/other_test.py b/test/cli/other_test.py index 0e4a4d275211..5844ddc8c4ab 100644 --- a/test/cli/other_test.py +++ b/test/cli/other_test.py @@ -2583,6 +2583,8 @@ def test_inline_suppr_builddir(tmp_path): __test_inline_suppr(tmp_path, ['--cppcheck-build-dir={}'.format(build_dir), '-j1']) +# TODO: the suppressions are generated outside of the scope which captures the analysis information +@pytest.mark.xfail(strict=True) def test_inline_suppr_builddir_cached(tmp_path): build_dir = tmp_path / 'b1' os.mkdir(build_dir) @@ -2596,6 +2598,8 @@ def test_inline_suppr_builddir_j(tmp_path): __test_inline_suppr(tmp_path, ['--cppcheck-build-dir={}'.format(build_dir), '-j2']) +# TODO: the suppressions are generated outside of the scope which captures the analysis information +@pytest.mark.xfail(strict=True) def test_inline_suppr_builddir_j_cached(tmp_path): build_dir = tmp_path / 'b1' os.mkdir(build_dir)