bump smda and remove xfail

This commit is contained in:
Moritz Raabe
2021-06-07 13:56:55 +02:00
parent 2691fb400e
commit 8b58723f40
2 changed files with 1 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ requirements = [
"networkx==2.5.1", "networkx==2.5.1",
"ruamel.yaml==0.17.7", "ruamel.yaml==0.17.7",
"vivisect==1.0.3", "vivisect==1.0.3",
"smda==1.5.17", "smda==1.5.18",
"pefile==2021.5.24", "pefile==2021.5.24",
] ]

View File

@@ -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: if scope.__name__ == "file" and isinstance(feature, capa.features.file.FunctionName) and expected is True:
pytest.xfail("SMDA has no function ID") 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) do_test_feature_presence(get_smda_extractor, sample, scope, feature, expected)