3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-24 05:08:56 +00:00

log: add -expect types prefix-log, prefix-warning, prefix-error

This commit is contained in:
Emil J. Tywoniak 2025-06-16 21:26:08 +02:00
parent 67f8de54dc
commit 41107e5473
3 changed files with 63 additions and 36 deletions

View file

@ -201,6 +201,7 @@ struct LogExpectedItem
};
extern dict<std::string, LogExpectedItem> log_expect_log, log_expect_warning, log_expect_error;
extern dict<std::string, LogExpectedItem> log_expect_prefix_log, log_expect_prefix_warning, log_expect_prefix_error;
void log_check_expected();
const char *log_signal(const RTLIL::SigSpec &sig, bool autoint = true);