diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-05-19 07:34:51 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-23 09:26:24 +0200 |
commit | 9b2136fb7124934a8869a4d72cf7bf86db503935 (patch) | |
tree | 6f5870516d30c88e3c0df1f779664dded14860d0 /bin | |
parent | 5956828c88501ef1366e60010b05053a8e1e642e (diff) |
find-unneeded-includes: Make the output user friendlier
This way it's easy to copy-paste the problematic command
for further investigation of IWYUs proposals
Change-Id: I9e7403f0f05e64e562441941f00127a62bf15265
Reviewed-on: https://gerrit.libreoffice.org/54560
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/find-unneeded-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index 7cc933ff6c9a..b4a2a89e0377 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -165,7 +165,7 @@ def run_tool(task_queue, failed_files): p = subprocess.Popen(invocation, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) retcode = processIWYUOutput(p.communicate()[0].decode('utf-8').splitlines(), moduleRules) if retcode != 0: - print("ERROR: '" + invocation + "' found unused includes.") + print("ERROR: The following command found unused includes:\n" + invocation) failed_files.append(invocation) task_queue.task_done() |