Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Nov 12, 2023
1 parent 17732d6 commit 629b664
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/2041-tr-checker/issue_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@
assert exit_code != 0, "OpenLane did not throw non zero exit code"
log_path = os.path.join(run_folder, "openlane.log")
assert (
subprocess.call(["grep", "-i", "There are violations in the design after detailed routing", log_path]) == 0
subprocess.call(
[
"grep",
"-i",
"There are violations in the design after detailed routing",
log_path,
]
)
== 0
), "OpenLane did not report the existence of routing violations correctly"

0 comments on commit 629b664

Please sign in to comment.