Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJOHN974 committed Nov 22, 2023
1 parent 54bbb5f commit acc9645
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/zkasm-result.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,17 @@ def assert_with_csv(status_map):
print("csvreader ok")
next(csvreader) # Skip header row
csv_dict = {}
print('a')
for row in csvreader:
print('b')
if row[0] == "Test" or row[0] == "Total Passed" or row[0] == "Amount of Tests":
continue
print('c')
csv_dict[row[0]] = row[1]
print('d')
print('e')
if csv_dict != status_map:
print('f')
print(f"dict diff = {csv_dict ^ status_map}")
return 1
return 0
Expand Down

0 comments on commit acc9645

Please sign in to comment.