Skip to content

Commit

Permalink
Remove skip in comparison script
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Jan 18, 2024
1 parent a0bad57 commit 2bd8fdd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions vm/src/tests/cairo_pie_comparator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@
with ZipFile(filename1) as cairo_lang_pie_zip, ZipFile(filename2) as cairo_vm_pie_zip:
# Compare json files
for file in json_files:
# Skipping this check due to a bug in the memory holes count
# TODO: Remove it once the bug is fixed
if (filename1 == "../../../cairo_programs/_keccak_alternative_hint.pie.zip" or filename1 == "../../../cairo_programs/relocate_temporary_segment_append.pie.zip" or filename1 == "../../../cairo_programs/keccak_alternative_hint.pie.zip") and file == "execution_resources.json":
print(f"Comparison skipped for {filename1}/{file} vs {filename2}/{file}")
continue
with cairo_lang_pie_zip.open(file) as cairo_lang_file, cairo_vm_pie_zip.open(file) as cairo_vm_file:
cl_content = json.load(cairo_lang_file)
cv_content = json.load(cairo_vm_file)
Expand Down

0 comments on commit 2bd8fdd

Please sign in to comment.