2016-08-03 14:37:51 +03:00
|
|
|
// Error messages should not contain newlines. This script finds
|
|
|
|
// messages that do. Fixing them is manual.
|
|
|
|
@r@
|
2020-07-22 11:40:45 +03:00
|
|
|
expression errp, err, eno, cls, fmt, ap;
|
2016-08-03 14:37:51 +03:00
|
|
|
position p;
|
|
|
|
@@
|
|
|
|
(
|
2020-07-22 11:40:45 +03:00
|
|
|
error_vreport(fmt, ap)@p
|
|
|
|
|
|
|
|
|
warn_vreport(fmt, ap)@p
|
|
|
|
|
|
|
|
|
info_vreport(fmt, ap)@p
|
|
|
|
|
|
2016-08-03 14:37:51 +03:00
|
|
|
error_report(fmt, ...)@p
|
|
|
|
|
|
2020-07-22 11:40:45 +03:00
|
|
|
warn_report(fmt, ...)@p
|
|
|
|
|
|
|
|
|
info_report(fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_report_once(fmt, ...)@p
|
|
|
|
|
|
|
|
|
warn_report_once(fmt, ...)@p
|
|
|
|
|
|
2016-08-03 14:37:51 +03:00
|
|
|
error_setg(errp, fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_setg_errno(errp, eno, fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_setg_win32(errp, eno, cls, fmt, ...)@p
|
|
|
|
|
|
2020-07-22 11:40:45 +03:00
|
|
|
error_propagate_prepend(errp, err, fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_vprepend(errp, fmt, ap)@p
|
|
|
|
|
|
2016-08-03 14:37:51 +03:00
|
|
|
error_prepend(errp, fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_setg_file_open(errp, eno, cls, fmt, ...)@p
|
|
|
|
|
|
2020-07-22 11:40:45 +03:00
|
|
|
warn_reportf_err(errp, fmt, ...)@p
|
|
|
|
|
|
2016-08-03 14:37:51 +03:00
|
|
|
error_reportf_err(errp, fmt, ...)@p
|
|
|
|
|
|
|
|
|
error_set(errp, cls, fmt, ...)@p
|
|
|
|
)
|
|
|
|
@script:python@
|
|
|
|
fmt << r.fmt;
|
|
|
|
p << r.p;
|
|
|
|
@@
|
|
|
|
if "\\n" in str(fmt):
|
2020-07-22 11:40:45 +03:00
|
|
|
print("%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt))
|