diff mbox

[U-Boot,v2] patman: make run results better visible

Message ID 1409852713-17291-1-git-send-email-vbendeb@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Vadim Bendebury Sept. 4, 2014, 5:45 p.m. UTC
For an occasional user of patman some failures are not obvious: for
instance when checkpatch reports warnings, the dry run still reports
that the email would be sent. If it is not dry run, the warnings are
shown on the screen, but it is not clear that the email was not sent.

Add some code to report failure to send email explicitly.

Tested by running the script on a patch with style violations,
observed error messages in the script output.

Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
---

Changes in v2:
  - modified the error message for accuracy

 tools/patman/patman.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Comments

Doug Anderson Sept. 4, 2014, 6:57 p.m. UTC | #1
Vadim,

On Thu, Sep 4, 2014 at 10:45 AM, Vadim Bendebury <vbendeb@chromium.org> wrote:
> For an occasional user of patman some failures are not obvious: for
> instance when checkpatch reports warnings, the dry run still reports
> that the email would be sent. If it is not dry run, the warnings are
> shown on the screen, but it is not clear that the email was not sent.
>
> Add some code to report failure to send email explicitly.
>
> Tested by running the script on a patch with style violations,
> observed error messages in the script output.
>
> Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
> ---
>
> Changes in v2:
>   - modified the error message for accuracy
>
>  tools/patman/patman.py | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)

Reviewed-by: Doug Anderson <dianders@chromium.org>
Simon Glass Sept. 4, 2014, 10:38 p.m. UTC | #2
On 4 September 2014 12:57, Doug Anderson <dianders@chromium.org> wrote:

> Vadim,
>
> On Thu, Sep 4, 2014 at 10:45 AM, Vadim Bendebury <vbendeb@chromium.org>
> wrote:
> > For an occasional user of patman some failures are not obvious: for
> > instance when checkpatch reports warnings, the dry run still reports
> > that the email would be sent. If it is not dry run, the warnings are
> > shown on the screen, but it is not clear that the email was not sent.
> >
> > Add some code to report failure to send email explicitly.
> >
> > Tested by running the script on a patch with style violations,
> > observed error messages in the script output.
> >
> > Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
> > ---
> >
> > Changes in v2:
> >   - modified the error message for accuracy
> >
> >  tools/patman/patman.py | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
>
> Reviewed-by: Doug Anderson <dianders@chromium.org>
>

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass Sept. 10, 2014, 6:55 p.m. UTC | #3
Applied to u-boot-x86/buildman, thanks!
diff mbox

Patch

diff --git a/tools/patman/patman.py b/tools/patman/patman.py
index c60aa5a..86e8e63 100755
--- a/tools/patman/patman.py
+++ b/tools/patman/patman.py
@@ -154,13 +154,18 @@  else:
 
     # Email the patches out (giving the user time to check / cancel)
     cmd = ''
-    if ok or options.ignore_errors:
+    its_a_go = ok or options.ignore_errors
+    if its_a_go:
         cmd = gitutil.EmailPatches(series, cover_fname, args,
                 options.dry_run, not options.ignore_bad_tags, cc_file,
                 in_reply_to=options.in_reply_to)
+    else:
+        print col.Color(col.RED, "Not sending emails due to errors/warnings")
 
     # For a dry run, just show our actions as a sanity check
     if options.dry_run:
         series.ShowActions(args, cmd, options.process_tags)
+        if not its_a_go:
+            print col.Color(col.RED, "Email would not be sent")
 
     os.remove(cc_file)