From d8aa276f254e7f8fa0a75da2e2c1a16e32fde3fc Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Thu, 23 Mar 2023 14:04:14 +0100 Subject: [PATCH] tests: debug binja api --- tests/test_binja_features.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_binja_features.py b/tests/test_binja_features.py index 951332aa..27166c39 100644 --- a/tests/test_binja_features.py +++ b/tests/test_binja_features.py @@ -21,9 +21,12 @@ try: binaryninja.load(source=b"\x90") except RuntimeError as e: logger.warning("Binary Ninja license is not valid, provide via $BN_LICENSE or license.dat") + print("invalid binja license") else: + print("got binja") binja_present = True except ImportError: + print("no binja") pass