Skip to content

Commit

Permalink
Revert "test failing CI"
Browse files Browse the repository at this point in the history
This reverts commit 4ec6420.
  • Loading branch information
kareefardi committed Nov 10, 2023
1 parent 4ec6420 commit becf60b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions designs/spm/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"FP_PDN_HOFFSET": 7,
"FP_PIN_ORDER_CFG": "dir::pin_order.cfg",
"FP_PDN_SKIPTRIM": true,
"SYNTH_STRATEGY": "DELAY",
"pdk::sky130*": {
"FP_CORE_UTIL": 45,
"scl::sky130_fd_sc_hd": {
Expand All @@ -34,4 +33,4 @@
"MAX_FANOUT_CONSTRAINT": 4,
"PL_TARGET_DENSITY": 0.5
}
}
}
2 changes: 1 addition & 1 deletion tests/2038-drc_bad/issue_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
subprocess.call(
["grep", "-i", "There are violations in the design after Magic DRC", log_path]
)
== 1
== 0
), "OpenLane does not accurately report the existence of violations"

assert (
Expand Down
2 changes: 1 addition & 1 deletion tests/2038-drc_good/issue_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
subprocess.call(
["grep", "-i", "No DRC violations after GDS streaming out", log_path]
)
== 1
== 0
), "OpenLane did not report the lack of DRC violations properly"
2 changes: 1 addition & 1 deletion tests/2038-lvs_bad/issue_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

log_path = os.path.join(run_folder, "openlane.log")
assert (
subprocess.call(["grep", "-i", "There are LVS errors in the design", log_path]) == 1
subprocess.call(["grep", "-i", "There are LVS errors in the design", log_path]) == 0
), "OpenLane did not report the existence of LVS errors correctly"
2 changes: 1 addition & 1 deletion tests/2038-lvs_good/issue_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
log_path,
]
)
== 1
== 0
), "Unexpected LVS error count"

0 comments on commit becf60b

Please sign in to comment.