Skip to content

Commit e1c7864

Browse files
authored
Merge pull request #2518 from mandiant/bn/skip-test
skip test where BN misses the function
2 parents e57de2b + 9ad3f06 commit e1c7864

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_binja_features.py

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
indirect=["sample", "scope"],
4141
)
4242
def test_binja_features(sample, scope, feature, expected):
43+
# TODO(mr-tz): BinaryNinja does not recognize this function
44+
# https://github.com/mandiant/capa/issues/2507
45+
if scope.__name__ == "function=0x14004B4F0":
46+
pytest.xfail("BinaryNinja does not recognize this function")
4347
fixtures.do_test_feature_presence(fixtures.get_binja_extractor, sample, scope, feature, expected)
4448

4549

0 commit comments

Comments
 (0)