Gnus development mailing list
 help / color / mirror / Atom feed
* Re: [Buildbot] Gnus build failed
       [not found] <E1Yy7fd-0004tU-Ps@randomsample.de>
@ 2015-05-29  0:13 ` Katsumi Yamaoka
  2015-05-31 10:44   ` David Engster
  0 siblings, 1 reply; 3+ messages in thread
From: Katsumi Yamaoka @ 2015-05-29  0:13 UTC (permalink / raw)
  To: gnus-buildbot; +Cc: ding, emacs-devel

On Fri, 29 May 2015 01:57:05 +0200, gnus-buildbot@randomsample.de wrote:
> The Buildbot has detected a new failure on builder emacs-devel.
> Details at: http://randomsample.de/gnus-buildbot/builders/emacs-devel/builds/737
> Blamelist: Katsumi Yamaoka <yamaoka@jpl.org>

> Please note:
>  - The Buildbot uses 'make fail-on-warn'
>  - If this build fails again, it will only be reported on the
>    Gnus-buildbot mailing list (gmane.emacs.gnus.buildbot)

> ---------------------------------------------------------------

Why did the build, in the last process `test', fail?
The change are for only string objects (see below), so it should
not be a cause of any error.

--- gnus-art.el~	2015-05-28 22:46:35.929698000 +0000
+++ gnus-art.el	2015-05-28 07:47:44.000000000 +0000
@@ -7828,11 +7828,11 @@
     ("/\\([a-z][-a-z0-9]+\\.el\\)\\>[^.?]"
      ;; Exclude [.?] for URLs in gmane.emacs.cvs
      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
-    ("`\\([a-z][-a-z0-9]+\\.el\\)'"
+    ("[`‘]\\([a-z][-a-z0-9]+\\.el\\)['’]"
      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
-    ("`\\([a-z][a-z0-9]+-[a-z0-9]+-[-a-z0-9]*[a-z]\\|\\(gnus\\|message\\)-[-a-z]+\\)'"
+    ("[`‘]\\([a-z][a-z0-9]+-[a-z0-9]+-[-a-z0-9]*[a-z]\\|\\(gnus\\|message\\)-[-a-z]+\\)['’]"
      0 (>= gnus-button-emacs-level 8) gnus-button-handle-symbol 1)
-    ("`\\([a-z][a-z0-9]+-[a-z]+\\)'"
+    ("[`‘]\\([a-z][a-z0-9]+-[a-z]+\\)['’]"
      0 (>= gnus-button-emacs-level 9) gnus-button-handle-symbol 1)
     ("(setq[ \t\n]+\\([a-z][a-z0-9]+-[-a-z0-9]+\\)[ \t\n]+.+)"
      1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-variable 1)
@@ -7842,7 +7842,7 @@
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2)
     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET\\>"
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2)
-    ("`\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'"
+    ("[`‘]\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^'’]+\\)\\)['’]"
      ;; Unlike the other regexps we really have to require quoting
      ;; here to determine where it ends.
      1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3)

Regards,



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildbot] Gnus build failed
  2015-05-29  0:13 ` [Buildbot] Gnus build failed Katsumi Yamaoka
@ 2015-05-31 10:44   ` David Engster
  2015-05-31 22:45     ` Katsumi Yamaoka
  0 siblings, 1 reply; 3+ messages in thread
From: David Engster @ 2015-05-31 10:44 UTC (permalink / raw)
  To: Katsumi Yamaoka; +Cc: ding, emacs-devel

Katsumi Yamaoka writes:
> On Fri, 29 May 2015 01:57:05 +0200, gnus-buildbot@randomsample.de wrote:
>> The Buildbot has detected a new failure on builder emacs-devel.
>> Details at: http://randomsample.de/gnus-buildbot/builders/emacs-devel/builds/737
>> Blamelist: Katsumi Yamaoka <yamaoka@jpl.org>
>
>
>> Please note:
>>  - The Buildbot uses 'make fail-on-warn'
>>  - If this build fails again, it will only be reported on the
>>    Gnus-buildbot mailing list (gmane.emacs.gnus.buildbot)
>
>> ---------------------------------------------------------------
>
> Why did the build, in the last process `test', fail?
> The change are for only string objects (see below), so it should
> not be a cause of any error.

Two reasons, and both indeed have nothing to do with the actual commit:

- Using `sleep-for' to wait for the ping to Gmane does not seem to
  wait. This seems to be this issue here:

  http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15990
  http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00294.html

  I replaced that `sleep-for' with a call to the 'sleep' binary...

- Connecting to Gmane seems to be unreliable, so I disabled running the
  test for now.

-David



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildbot] Gnus build failed
  2015-05-31 10:44   ` David Engster
@ 2015-05-31 22:45     ` Katsumi Yamaoka
  0 siblings, 0 replies; 3+ messages in thread
From: Katsumi Yamaoka @ 2015-05-31 22:45 UTC (permalink / raw)
  To: David Engster; +Cc: ding, emacs-devel

On Sun, 31 May 2015 12:44:17 +0200, David Engster wrote:
> Katsumi Yamaoka writes:
>> Why did the build, in the last process `test', fail?

> Two reasons, and both indeed have nothing to do with the actual commit:

Thank you very much for clarifying and fixing it.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-31 22:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <E1Yy7fd-0004tU-Ps@randomsample.de>
2015-05-29  0:13 ` [Buildbot] Gnus build failed Katsumi Yamaoka
2015-05-31 10:44   ` David Engster
2015-05-31 22:45     ` Katsumi Yamaoka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).