3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-25 14:16:07 +00:00

Add --statuscsv

Prints summary of properties for each task, selecting only a single row for each unique status/property/task.  Prefers the earliest FAIL or the latest non-FAIL, using the same formatting as the `--livecsv`.
This commit is contained in:
Krystine Sherwin 2025-07-08 15:47:32 +12:00
parent e2b1e85090
commit 0fa5715909
No known key found for this signature in database
3 changed files with 91 additions and 3 deletions

View file

@ -75,6 +75,8 @@ def parser_func(release_version='unknown SBY version'):
parser.add_argument("--status", action="store_true", dest="status",
help="summarize the contents of the status database")
parser.add_argument("--statuscsv", action="store_true", dest="statuscsv",
help="print the most recent status for each property in csv format")
parser.add_argument("--statusreset", action="store_true", dest="status_reset",
help="reset the contents of the status database")