From 4a2902512ee2ffe6ddeb2ec4136b090f3a9aeb00 Mon Sep 17 00:00:00 2001 From: Moritz Date: Fri, 7 Jul 2023 14:01:50 +0200 Subject: [PATCH] Update test_binja_features.py (#1595) temporarily skip stack string test, while we wait for #1473 --- tests/test_binja_features.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_binja_features.py b/tests/test_binja_features.py index 04c8a49e..2e9e6697 100644 --- a/tests/test_binja_features.py +++ b/tests/test_binja_features.py @@ -37,6 +37,8 @@ except ImportError: indirect=["sample", "scope"], ) def test_binja_features(sample, scope, feature, expected): + if feature == capa.features.common.Characteristic("stack string"): + pytest.xfail("skip failing Binja stack string detection temporarily, see #1473") fixtures.do_test_feature_presence(fixtures.get_binja_extractor, sample, scope, feature, expected)