3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-10-07 18:21:56 +00:00

More tests without properties

Used `sby --autotune` to find other engines which fail (though there aren't any other exceptions that I could find).
Parse errors from `abc bmc3` and `abc sim3` instead of returning UNKNOWN.
This commit is contained in:
Krystine Sherwin 2025-09-30 10:31:40 +13:00
parent c06d8682cd
commit db782815f2
No known key found for this signature in database
2 changed files with 19 additions and 3 deletions

View file

@ -246,6 +246,9 @@ def run(mode, task, engine_idx, engine):
else:
proc_status = "FAIL"
match = re.match("Error: (Does not work|Only works) for (sequential|combinational) networks.", line)
if match: proc_status = "ERROR"
return line
def exit_callback(retcode):