Skip to content

Commit d1e48cd

Browse files
committed
Issue #27: fix cmp.ll results.
1 parent 0416807 commit d1e48cd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tools/evm-test/evm_test.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -215,14 +215,6 @@ def run_string_input(name: str, inputs: List[str], output: str, function: str) -
215215
"input": ["0x12345678", "0x87654321"],
216216
"output": "0x0000000000000000000000000000000000000000000000000000000012345678",
217217
},
218-
"cmp.ll" : {
219-
"input": ["0x00001234", "0x00004321"],
220-
"output": "0x0000000000000000000000000000000000000000000000000000000000021908",
221-
},
222-
"cmp.ll" : {
223-
"input": ["0x00004321", "0x00001234"],
224-
"output": "0x0000000000000000000000000000000000000000000000000000000004c5f4b4",
225-
},
226218
}
227219

228220
loop_tests = {
@@ -253,6 +245,14 @@ def run_string_input(name: str, inputs: List[str], output: str, function: str) -
253245
"input": ["0xff00ff00", "0x00ff00ff"],
254246
"output": "0x0000000000000000000000000000000000000000000000000000000000000001",
255247
},
248+
"cmp.ll" : {
249+
"input": ["0x00001234", "0x00004321"],
250+
"output": "0x0000000000000000000000000000000000000000000000000000000000021908",
251+
},
252+
"cmp.ll" : {
253+
"input": ["0x00004321", "0x00001234"],
254+
"output": "0x0000000000000000000000000000000000000000000000000000000004c5f4b4",
255+
},
256256
}
257257

258258
def run_testset(testset) -> List[str]:

0 commit comments

Comments
 (0)