Skip to content

Commit

Permalink
fix: enabled failing at drc check again
Browse files Browse the repository at this point in the history
  • Loading branch information
harshkhandeparkar committed May 6, 2024
1 parent d818b86 commit 3a78718
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openfasoc/generators/ldo-gen/tools/ldo-gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@
# TODO: look at drc after this PR
p = sp.Popen(["make", "magic_drc"], cwd=directories["flowDir"])
p.wait()
# if p.returncode:
# print("[Error] DRC failed. Refer to the report")
# exit(1)
if p.returncode:
print("[Error] DRC failed. Refer to the report")
exit(1)

print("#----------------------------------------------------------------------")
print("# Run LVS")
Expand Down

0 comments on commit 3a78718

Please sign in to comment.