From 8b58723f40e95c28c6b8003e3bf62c58ca75a784 Mon Sep 17 00:00:00 2001 From: Moritz Raabe Date: Mon, 7 Jun 2021 13:56:55 +0200 Subject: [PATCH] bump smda and remove xfail --- setup.py | 2 +- tests/test_smda_features.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 5810c24c..f6236924 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ requirements = [ "networkx==2.5.1", "ruamel.yaml==0.17.7", "vivisect==1.0.3", - "smda==1.5.17", + "smda==1.5.18", "pefile==2021.5.24", ] diff --git a/tests/test_smda_features.py b/tests/test_smda_features.py index 9631b765..9435f736 100644 --- a/tests/test_smda_features.py +++ b/tests/test_smda_features.py @@ -23,12 +23,6 @@ def test_smda_features(sample, scope, feature, expected): if scope.__name__ == "file" and isinstance(feature, capa.features.file.FunctionName) and expected is True: pytest.xfail("SMDA has no function ID") - if "a198216798ca38f280dc413f8c57f2c2" in sample and sys.platform == "win32": - pytest.xfail("SMDA bug tracked #585") - - if "al-khaser_x64" in sample and sys.platform == "win32": - pytest.xfail("SMDA bug tracked #585") - do_test_feature_presence(get_smda_extractor, sample, scope, feature, expected)