<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lang.perl.perl5.porters">
    <title>gmane.comp.lang.perl.perl5.porters</title>
    <link>http://blog.gmane.org/gmane.comp.lang.perl.perl5.porters</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125622"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125616"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125614"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125610"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125603"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125596"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125594"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125593"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666">
    <title>Smoke [blead] v5.19.0-602-g25b2535 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 25b25355681b1b113ebbf386a7ebe3158ae21ffe v5.19.0-602-g25b2535
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 4 hours 25 minutes (average 1 hour 6 minutes)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-602-g25b2535  Configuration (common) none
----------- ---------------------------------------------------------
O O         
F O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE25b25355681b1b113ebbf386a7ebe3158ae21ffe

Failures: (common-args) none
[default] -Duseithreads
../cpan/IPC-Cmd/t/01_IPC-Cmd.t..............................FAILED
    18&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-20T03:11:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658">
    <title>floating /\G/</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658</link>
    <description>&lt;pre&gt;I have just discovered that there is nothing in the test suite that tests
a pattern with a floating (rather than anchored) \G, such as /a+\G/; or to
put it another way, adding the following assert doesn't trigger any
failures the test suite:

diff --git a/regcomp.c b/regcomp.c
index 3426112..21ec392 100644
--- a/regcomp.c
+++ b/regcomp.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4577,6 +4577,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; PerlIO_printf(Perl_debug_log, "LHS=%d RHS=%d\n", -counted 
                if (RExC_rx-&amp;gt;gofs &amp;lt; (U32)min)
                    RExC_rx-&amp;gt;gofs = min;
             } else {
+                assert(0);
                 RExC_rx-&amp;gt;extflags |= RXf_GPOS_FLOAT;
                 RExC_rx-&amp;gt;gofs = 0;
             }      


Can I assume that a floating \G is a legitimate usage, and that the lack of
tests is just an oversight?

(I'm currently in the middle of a major refactoring of pp_match(), and am
discovering lots of fun stuff).

&lt;/pre&gt;</description>
    <dc:creator>Dave Mitchell</dc:creator>
    <dc:date>2013-06-19T21:35:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651">
    <title>Smoke [blead] v5.19.0-601-g14fd935 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 14fd9356c9a6abaf104daad94dfc9ff5234938a6 v5.19.0-601-g14fd935
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 4 hours 5 minutes (average 1 hour 1 minute)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-601-g14fd935  Configuration (common) none
----------- ---------------------------------------------------------
O F         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE14fd9356c9a6abaf104daad94dfc9ff5234938a6

Failures: (common-args) none
[default] -DDEBUGGING
../lib/Benchmark.t..........................................FAILED
    7
    &lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T17:16:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637">
    <title>Smoke [blead] v5.19.0-601-g14fd935 FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_clang_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log14fd9356c9a6abaf104daad94dfc9ff5234938a6.log.gz

Automated smoke report for 5.19.1 patch 14fd9356c9a6abaf104daad94dfc9ff5234938a6 v5.19.0-601-g14fd935
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)
    smoketime 1 hour 17 minutes (average 19 minutes 20 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-601-g14fd935  Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang
----------- ---------------------------------------------------------
F O         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T14:25:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629">
    <title>Smoke [blead] v5.19.0-599-g14f3ea6 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 14f3ea6619750636ac0a2d92f7cb4cd844e65ce9 v5.19.0-599-g14f3ea6
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 2 hours 33 minutes (average 38 minutes 21 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-599-g14f3ea6  Configuration (common) none
----------- ---------------------------------------------------------
F F         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE14f3ea6619750636ac0a2d92f7cb4cd844e65ce9

Failures: (common-args) none
[default] 
[default] -DDEBUGGING
../lib/Benchmark.t.........................................&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T12:52:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626">
    <title>Smoke [blead] v5.19.0-598-g24da714 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 24da714d1c2c6d58010b280036532e5c9acd02ca v5.19.0-598-g24da714
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 2 hours 56 minutes (average 44 minutes 4 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-598-g24da714  Configuration (common) none
----------- ---------------------------------------------------------
O O         
F O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE24da714d1c2c6d58010b280036532e5c9acd02ca

Failures: (common-args) none
[default] -Duseithreads
../lib/Benchmark.t..........................................FAILED
  &lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T10:06:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125622">
    <title>Smoke [blead] v5.19.0-599-g14f3ea6 FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_clang_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125622</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log14f3ea6619750636ac0a2d92f7cb4cd844e65ce9.log.gz

Automated smoke report for 5.19.1 patch 14f3ea6619750636ac0a2d92f7cb4cd844e65ce9 v5.19.0-599-g14f3ea6
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)
    smoketime 57 minutes 2 seconds (average 14 minutes 16 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-599-g14f3ea6  Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang
----------- ---------------------------------------------------------
F O         
O O         -Duseithreads
| +--------- -DDEBUGGING
+-----------&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T08:58:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125616">
    <title>Parrot 5.5.0 "Salvadori's Fig Parrot" Released!</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125616</link>
    <description>&lt;pre&gt;Obi-Wan: That boy is our last hope.
Yoda: No. There is another.
    -- Star Wars Episode V: The Empire Strikes Back

On behalf of the Parrot team, I'm proud to announce Parrot 5.5.0, also known
as "Salvadori's Fig Parrot".  Parrot (http://parrot.org/) is a virtual machine aimed
at running all dynamic languages.

Parrot 5.5.0 is available on Parrot's FTP site
(ftp://ftp.parrot.org/pub/parrot/releases/devel/5.5.0/), or by following the
download instructions at http://parrot.org/download.  For those who would like
to develop on Parrot, or help develop Parrot itself, we recommend using Git to
retrieve the source code to get the latest and best Parrot code.

Parrot 5.5.0 News:
    - Build
        + Configure options are now allowed to be quoted.
        + Fixed build on Win32.
        + Updated location of NQP on Win32.
        + Fixed Parrot::Distribution detection.
    - Documentation
        + Noted that RESPONSIBLE_PARTIES is mostly out of date.
    - Tests
        + Stopped testing native PBC on 64bit LE, du&lt;/pre&gt;</description>
    <dc:creator>Bruce Gray</dc:creator>
    <dc:date>2013-06-19T05:03:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125614">
    <title>Smoke [blead] v5.19.0-596-g96d496e FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125614</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 96d496e4cd065116b687b145979ad9c56cfd5a5d v5.19.0-596-g96d496e
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 2 hours 35 minutes (average 38 minutes 48 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-596-g96d496e  Configuration (common) none
----------- ---------------------------------------------------------
O F         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE96d496e4cd065116b687b145979ad9c56cfd5a5d

Failures: (common-args) none
[default] -DDEBUGGING
../cpan/IPC-Cmd/t/01_IPC-Cmd.t..............................FAILED
   &lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T04:19:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125610">
    <title>Perl 5 Commit Summary</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125610</link>
    <description>&lt;pre&gt;Perl 5 commit summary, activity since Saturday

Current branch blead
42 commits.  10 unique authors.  8 unique committers.
37 files changed, 543 insertions(+), 215 deletions(-)
Thanks, applied:  Father Chrysostomos (2) James E Keenan (1)
Snapshot: http://perl5.git.perl.org/perl.git/snapshot/96d496e4cd065116.tar.gz

  perldelta: note the change to "goto" in perlfunc
  Ricardo Signes              1 file changed, 12 insertions(+), 0 deletions(-)
  http://perl5.git.perl.org/perl.git/commit/96d496e4cd065116

  replace weird C&amp;lt;goto-TYPE&amp;gt; with C&amp;lt;goto TYPE&amp;gt;
  Ricardo Signes              1 file changed, 6 insertions(+), 6 deletions(-)
  http://perl5.git.perl.org/perl.git/commit/5a5b79a33d5fadad

  document that goto-EXPR will treat a subref differently
  Ricardo Signes              1 file changed, 6 insertions(+), 1 deletion(-)
  http://perl5.git.perl.org/perl.git/commit/3e8a637058231ac4

  lib/locale.t: Remove workaround for now fixed #108378
  Karl Williamson             1 file changed, 3 insertions(+), 13 deletion&lt;/pre&gt;</description>
    <dc:creator>Perl 5 commit summary</dc:creator>
    <dc:date>2013-06-19T01:14:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125603">
    <title>smoke-me branches</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125603</link>
    <description>&lt;pre&gt;We've got more smoke-me branches in our repository than Austin had 
smoked ribs joints!

Well, that's probably not factually accurate -- but we do have a lot. 
Committers, if your recognize any of them as yours, why not clean them 
up if they're no longer needed.

Thank you very much.
Jim Keenan

$ git branch -a | grep 'origin/smoke-me' | sed -e 's/remotes\///' |less 
| cat
   origin/smoke-me/AIX-useshrplib-Makefile-deps
   origin/smoke-me/Copy-overlap-wrapper-proto
   origin/smoke-me/EUMM-6.67_04
   origin/smoke-me/Makefile-miniperl-unification
   origin/smoke-me/Makefile-norecurse
   origin/smoke-me/POSIX-sleep
   origin/smoke-me/Pod-Simple-3.28
   origin/smoke-me/RT-113472
   origin/smoke-me/Shut-It!
   origin/smoke-me/SipHash
   origin/smoke-me/SuperFast
   origin/smoke-me/abolish-PL_main_start
   origin/smoke-me/arenas
   origin/smoke-me/bingos/EUMM-6.67_02
   origin/smoke-me/blead
   origin/smoke-me/builtin_rng
   origin/smoke-me/byteorder1
   origin/smoke-me/chip/magicflags7
   origin/smoke-me/coreuti&lt;/pre&gt;</description>
    <dc:creator>James E Keenan</dc:creator>
    <dc:date>2013-06-19T00:54:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125596">
    <title>Smoke [blead] v5.19.0-582-g0e417e4 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125596</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 0e417e4df08b660428345b505d48a7828b5d317b v5.19.0-582-g0e417e4
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 6 hours 1 minute (average 1 hour 30 minutes)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-582-g0e417e4  Configuration (common) none
----------- ---------------------------------------------------------
O O         
O F         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE0e417e4df08b660428345b505d48a7828b5d317b

Failures: (common-args) none
[default] -DDEBUGGING -Duseithreads
../t/op/threads.t...........................................FA&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-18T22:14:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125594">
    <title>Smoke [blead] v5.19.0-592-g670610e FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_clang_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125594</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log670610ebb17508101065cc5f5ecfe616aace5335.log.gz

Automated smoke report for 5.19.1 patch 670610ebb17508101065cc5f5ecfe616aace5335 v5.19.0-592-g670610e
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)
    smoketime 54 minutes 11 seconds (average 13 minutes 33 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-592-g670610e  Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang
----------- ---------------------------------------------------------
F O         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-18T22:04:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125593">
    <title>Smoke [blead] v5.19.0-592-g670610e FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_g++_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125593</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_g++_quick/log670610ebb17508101065cc5f5ecfe616aace5335.log.gz

Automated smoke report for 5.19.1 patch 670610ebb17508101065cc5f5ecfe616aace5335 v5.19.0-592-g670610e
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     g++ version 4.7.3
    smoketime 53 minutes 43 seconds (average 13 minutes 26 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-592-g670610e  Configuration (common) -Accflags=-DPERL_POISON -Dcc=g++
----------- ---------------------------------------------------------
O O         
O F         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-18T22:01:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666">
    <title>Smoke [blead] v5.19.0-602-g25b2535 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125666</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 25b25355681b1b113ebbf386a7ebe3158ae21ffe v5.19.0-602-g25b2535
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 4 hours 25 minutes (average 1 hour 6 minutes)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-602-g25b2535  Configuration (common) none
----------- ---------------------------------------------------------
O O         
F O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE25b25355681b1b113ebbf386a7ebe3158ae21ffe

Failures: (common-args) none
[default] -Duseithreads
../cpan/IPC-Cmd/t/01_IPC-Cmd.t..............................FAILED
    18&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-20T03:11:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658">
    <title>floating /\G/</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125658</link>
    <description>&lt;pre&gt;I have just discovered that there is nothing in the test suite that tests
a pattern with a floating (rather than anchored) \G, such as /a+\G/; or to
put it another way, adding the following assert doesn't trigger any
failures the test suite:

diff --git a/regcomp.c b/regcomp.c
index 3426112..21ec392 100644
--- a/regcomp.c
+++ b/regcomp.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4577,6 +4577,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; PerlIO_printf(Perl_debug_log, "LHS=%d RHS=%d\n", -counted 
                if (RExC_rx-&amp;gt;gofs &amp;lt; (U32)min)
                    RExC_rx-&amp;gt;gofs = min;
             } else {
+                assert(0);
                 RExC_rx-&amp;gt;extflags |= RXf_GPOS_FLOAT;
                 RExC_rx-&amp;gt;gofs = 0;
             }      


Can I assume that a floating \G is a legitimate usage, and that the lack of
tests is just an oversight?

(I'm currently in the middle of a major refactoring of pp_match(), and am
discovering lots of fun stuff).

&lt;/pre&gt;</description>
    <dc:creator>Dave Mitchell</dc:creator>
    <dc:date>2013-06-19T21:35:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651">
    <title>Smoke [blead] v5.19.0-601-g14fd935 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125651</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 14fd9356c9a6abaf104daad94dfc9ff5234938a6 v5.19.0-601-g14fd935
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 4 hours 5 minutes (average 1 hour 1 minute)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-601-g14fd935  Configuration (common) none
----------- ---------------------------------------------------------
O F         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE14fd9356c9a6abaf104daad94dfc9ff5234938a6

Failures: (common-args) none
[default] -DDEBUGGING
../lib/Benchmark.t..........................................FAILED
    7
    &lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T17:16:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637">
    <title>Smoke [blead] v5.19.0-601-g14fd935 FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_clang_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125637</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log14fd9356c9a6abaf104daad94dfc9ff5234938a6.log.gz

Automated smoke report for 5.19.1 patch 14fd9356c9a6abaf104daad94dfc9ff5234938a6 v5.19.0-601-g14fd935
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)
    smoketime 1 hour 17 minutes (average 19 minutes 20 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-601-g14fd935  Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang
----------- ---------------------------------------------------------
F O         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T14:25:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629">
    <title>Smoke [blead] v5.19.0-599-g14f3ea6 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125629</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 14f3ea6619750636ac0a2d92f7cb4cd844e65ce9 v5.19.0-599-g14f3ea6
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 2 hours 33 minutes (average 38 minutes 21 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-599-g14f3ea6  Configuration (common) none
----------- ---------------------------------------------------------
F F         
O O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE14f3ea6619750636ac0a2d92f7cb4cd844e65ce9

Failures: (common-args) none
[default] 
[default] -DDEBUGGING
../lib/Benchmark.t.........................................&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T12:52:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626">
    <title>Smoke [blead] v5.19.0-598-g24da714 FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu) {blead}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125626</link>
    <description>&lt;pre&gt;
Automated smoke report for 5.19.1 patch 24da714d1c2c6d58010b280036532e5c9acd02ca v5.19.0-598-g24da714
perl-win2k: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz(~2662 MHz) (x86/1 cpu)
    on        MSWin32 - Win2000 SP4
    using     cl version 14.00.50727.762
    smoketime 2 hours 56 minutes (average 44 minutes 4 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-598-g24da714  Configuration (common) none
----------- ---------------------------------------------------------
O O         
F O         -Duseithreads
| +--------- -DDEBUGGING
+----------- no debugging


Locally applied patches:
    SMOKE24da714d1c2c6d58010b280036532e5c9acd02ca

Failures: (common-args) none
[default] -Duseithreads
../lib/Benchmark.t..........................................FAILED
  &lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T10:06:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125622">
    <title>Smoke [blead] v5.19.0-599-g14f3ea6 FAIL(F) linux 3.8.0-23-generic [debian] (x86_64/8 cpu) {blead_clang_quick}</title>
    <link>http://comments.gmane.org/gmane.comp.lang.perl.perl5.porters/125622</link>
    <description>&lt;pre&gt;Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log14f3ea6619750636ac0a2d92f7cb4cd844e65ce9.log.gz

Automated smoke report for 5.19.1 patch 14f3ea6619750636ac0a2d92f7cb4cd844e65ce9 v5.19.0-599-g14f3ea6
zwei: Intel(R) Core(TM) i7 CPU 920 &amp;lt; at &amp;gt; 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)
    on        linux - 3.8.0-23-generic [debian]
    using     clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)
    smoketime 57 minutes 2 seconds (average 14 minutes 16 seconds)

Summary: FAIL(F)

O = OK  F = Failure(s), extended report at the bottom
X = Failure(s) under TEST but not under harness
? = still running or test results not (yet) available
Build failures during:       - = unknown or N/A
c = Configure, m = make, M = make (after miniperl), t = make test-prep

v5.19.0-599-g14f3ea6  Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang
----------- ---------------------------------------------------------
F O         
O O         -Duseithreads
| +--------- -DDEBUGGING
+-----------&lt;/pre&gt;</description>
    <dc:creator>George Greer</dc:creator>
    <dc:date>2013-06-19T08:58:00</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.perl.perl5.porters">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.perl.perl5.porters</link>
  </textinput>
</rdf:RDF>
