From 0c1b43b4a6f28c4c45bf4476e29a68cde29c5883 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 4 Oct 2021 09:57:15 -0400 Subject: Disable LLIL to HLIL mapping tests. --- suite/testcommon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/suite/testcommon.py b/suite/testcommon.py index 6bf745e4..71ce3bc9 100644 --- a/suite/testcommon.py +++ b/suite/testcommon.py @@ -200,7 +200,8 @@ class BinaryViewTestBuilder(Builder): retinfo.append("Function: {:x} Instruction: {:x} LLIL->MLIL: {}".format(func.start, ins.address, str(ins.mlil))) retinfo.append("Function: {:x} Instruction: {:x} LLIL->MLILS: {}".format(func.start, ins.address, str(sorted(list(map(str, ins.mlils)))))) retinfo.append("Function: {:x} Instruction: {:x} LLIL->HLIL: {}".format(func.start, ins.address, str(ins.hlil))) - retinfo.append("Function: {:x} Instruction: {:x} LLIL->HLILS: {}".format(func.start, ins.address, str(sorted(list(map(str, ins.hlils)))))) + # TODO investigate different results between mac and linux/win platforms + #retinfo.append("Function: {:x} Instruction: {:x} LLIL->HLILS: {}".format(func.start, ins.address, str(sorted(list(map(str, ins.hlils)))))) retinfo.append("Function: {:x} Instruction: {:x} Mapped MLIL: {}".format(func.start, ins.address, str(ins.mapped_medium_level_il))) retinfo.append("Function: {:x} Instruction: {:x} Value: {}".format(func.start, ins.address, str(ins.value))) retinfo.append("Function: {:x} Instruction: {:x} Possible Values: {}".format(func.start, ins.address, str(ins.possible_values))) -- cgit v1.3.1