| Message ID | 20260609084259.1532075-1-richard.purdie@linuxfoundation.org |
|---|---|
| State | Under Review |
| Headers | show |
| Series | checklayer: Improve debug output | expand |
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 046a146de06..bd9b1714a0f 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py @@ -425,6 +425,9 @@ def compare_signatures(old_sigs, curr_sigs): if not sig_diff: return None + for task in sig_diff: + print("%s changed %s -> %s" % (task, sig_diff[task][0], sig_diff[task][1])) + # Beware, depgraph uses task=<pn>.<taskname> whereas get_signatures() # uses <pn>:<taskname>. Need to convert sometimes. The output follows # the convention from get_signatures() because that seems closer to
When tasks don't match, the printdiff output alone can be misleading about which tasks didn't match. Print the mismatches explicitly to aid debugging. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- scripts/lib/checklayer/__init__.py | 3 +++ 1 file changed, 3 insertions(+)