perl.perl5.porters http://www.nntp.perl.org/group/perl.perl5.porters/ ... Copyright 1998-2013 perl.org Sun, 26 May 2013 05:16:49 +0000 ask@perl.org Re: RFC: Removing CGI.pm from the core distribution by Aristotle Pagaltzis On second thought, I also want to argue this point:<br/><br/>* Johan Vromans &lt;jvromans@squirrel.nl&gt; [2013-05-24 14:05]:<br/>&gt; And, if you want something quick and simple, use CPAN search and find<br/>&gt; yourself drowned in houndreds of CGI handling modules. Good luck<br/>&gt; finding one that suits your needs. And works.<br/><br/>If you want something quick and simple, why are you starting with CGI in<br/>the first place? Maybe because you knew of it already, but then finding<br/>CGI.pm among the hundreds of hits won&rsquo;t be an issue. But if you didn&rsquo;t<br/>know of it already, where did you get the idea to look into CGI in 2013?<br/>Not from any recent &ldquo;web dev 101&rdquo; intro.<br/><br/>&gt; The bottom line is: Do we want to ship perl such that it is easy to<br/>&gt; get started with simple web applications? If so we either need to<br/>&gt; include CGI.pm in the core, or put it on CPAN *and*make*sure*it*works.<br/>&gt; No change in maintenance burden.<br/><br/>Come again? How does &ldquo;ship CGI.pm in core&rdquo; equate to &ldquo;make it easy to<br/>get started with simple web applications&rdquo;? Who should *ever* be writing<br/>new code against CGI.pm?<br/><br/>In terms of merit? No one.<br/><br/>Only one final reason to target CGI.pm in new code remains: that it has<br/>always shipped with core. And making use of that advantage comes at high<br/>cost for the code you write.<br/><br/>If improving the ease of getting started with web dev is your priority,<br/>then your argument would really have to be about coring Plack (on which<br/>I&rsquo;d be -0) &ndash; even if you intend to deploy as a CGI.<br/><br/>The ones who are actually better served by keeping CGI.pm are those who<br/>deploy existing CGI applications &ndash; not writers of new web applications.<br/><br/>Regards,<br/>-- <br/>Aristotle Pagaltzis // &lt;http://plasmasturm.org/&gt;<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202285.html Sun, 26 May 2013 03:22:32 +0000 [perl #117989] Stop Carp from polluting the caller's namespace by James E Keenan via RT On Mon May 13 12:58:21 2013, Hugmeir wrote:<br/>&gt; This is a bug report for perl from fraserbn@gmail.com,<br/>&gt; generated with the help of perlbug 1.39 running under perl 5.16.2.<br/>&gt; <br/>&gt; <br/>&gt; -----------------------------------------------------------------<br/>&gt; [Please describe your issue here]<br/>&gt; <br/>&gt; In perl 5.6, this:<br/>&gt; <br/>&gt; perl -MCarp -le &#39;package Foo; eval { Carp::croak(1) }; print keys<br/>&gt; %Foo::;&#39;<br/>&gt; <br/>&gt; Used to output &#39;ISA&#39;. In 5.8 and newer, it outputs &quot;ISA&quot; and<br/>&gt; &quot;CARP_NOT&quot;.<br/>&gt; This is because Carp::trusts_directly() simply tries using both<br/>&gt; of those variables without checking if they exists first, which<br/>&gt; ends up creating them.<br/>&gt; The first of the attached patches fixes that so that no new globs are<br/>&gt; introduced to the caller&#39;s namespace, by checking if the variable<br/>&gt; exists in the stash before using them.<br/>&gt; <br/>&gt; The second patch fixes a related issue:<br/>&gt; <br/>&gt; use Carp;<br/>&gt; package Foo;<br/>&gt; $CARP_NOT = 1;<br/>&gt; warn *{$Foo::{CARP_NOT}}{ARRAY} || &#39;undefined&#39;;<br/>&gt; eval { Carp::croak(1) };<br/>&gt; warn *{$Foo::{CARP_NOT}}{ARRAY} || &#39;undefined&#39;;<br/>&gt; <br/>&gt; Both should display &quot;undefined&quot;, but instead the second warn<br/>&gt; shows that the array slot got vivified by Carp.<br/>&gt; <br/><br/>The patches look good. The code changes are plausible. Tests have been<br/>added. The commit messages are descriptive.<br/><br/>However, when I applied the patch in a branch, I got a test failure:<br/>#####<br/>$ cd t;./perl harness -v ../dist/Carp/t/heavy.t; cd -<br/>../dist/Carp/t/heavy.t .. <br/>1..3<br/>ok 1 # control<br/>ok 2 # carp loaded by Carp::Heavy<br/>not ok 3 # version numbers match<br/>Failed 1/3 subtests <br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Carp/t/heavy.t (Wstat: 0 Tests: 3 Failed: 1)<br/> Failed test: 3<br/>Files=1, Tests=3, 0 wallclock secs ( 0.00 usr + 0.01 sys = 0.01 CPU)<br/>Result: FAIL<br/>#####<br/>Now, this is another case of a (mindless, IMO) error in which a test is<br/>comparing version numbers in two different files. What makes it<br/>particularly peculiar in this instance is that there&#39;s nothing in<br/>Carp::Heavy any more *except* its version number!<br/><br/>In any event, I am attaching an additional patch which I believe<br/>resolves this. Please review.<br/><br/>Thank you very much.<br/>Jim Keenan<br/><br/><br/>---<br/>via perlbug: queue: perl5 status: new<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=117989<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202284.html Sun, 26 May 2013 03:00:26 +0000 [perl #118085] Large batch of typo fixes by James E Keenan via RT On Sat May 25 18:06:00 2013, dsteinbrunner wrote:<br/>&gt; On Sat May 25 06:54:41 2013, jkeenan wrote:<br/>&gt; &gt; I have now applied all patches except the following:<br/>&gt; <br/>&gt; It does not appear 0048-typo-fix-for-obj-pod.patch has been applied.<br/><br/>Correct. Corrected in d2534ce.<br/><br/><br/>---<br/>via perlbug: queue: perl5 status: open<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118085<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202283.html Sun, 26 May 2013 02:08:28 +0000 Re: Localizing @ARGV prevents magic <> behavior later by Ricardo Signes * demerphq &lt;demerphq@gmail.com&gt; [2013-05-25T13:01:56]<br/>&gt; Would I be right that this does not die is a bug?<br/>&gt; <br/>&gt; It has failed for as long as Porting/bisect.pl can test.<br/>&gt; <br/>&gt; $ seq 3 | perl bug.pl<br/>&gt; my $s= do { local (@ARGV,$/)= ($0); &lt;&gt; };<br/>&gt; print $s;<br/>&gt; while (&lt;&gt;) { die $_ };<br/>&gt; print &quot;did not die\n&quot;;<br/>&gt; __END__<br/>&gt; did not die<br/><br/>I lean toward yes. I think there&#39;s more to it, though? Or maybe I am being<br/>thick, tonight. I rewrote bug.pl as:<br/><br/> do { local (@ARGV,$/)= ($0); print &lt;&gt; };<br/> while (&lt;&gt;) { die $_ };<br/> print &quot;did not die\n&quot;;<br/><br/>It prints itself and then dies &quot;1&quot;<br/><br/>Am I thick, or is this weirder than it initially seemed?<br/><br/>-- <br/>rjbs<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202282.html Sun, 26 May 2013 01:52:00 +0000 Re: [perl #118159] SvTRUE changed behavior in 5.18 by Ricardo Signes * Father Chrysostomos via RT &lt;perlbug-followup@perl.org&gt; [2013-05-25T14:20:32]<br/>&gt; So this seems like a bug to me. Should we change it back?<br/><br/>I think we should.<br/><br/>-- <br/>rjbs<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202281.html Sun, 26 May 2013 01:25:51 +0000 Re: Big batch of typo fixes and the like by Ricardo Signes * David Steinbrunner &lt;dsteinbrunner@pobox.com&gt; [2013-05-13T16:51:51]<br/>&gt; [ all your typos are belong to me ]<br/><br/>Thanks very much for all this work. I&#39;ve been watching these patches land one<br/>by one. Quite an effort!<br/><br/>-- <br/>rjbs<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202280.html Sun, 26 May 2013 01:16:22 +0000 [perl #118085] Large batch of typo fixes by David Steinbrunner via RT On Sat May 25 06:54:41 2013, jkeenan wrote:<br/>&gt; I have now applied all patches except the following:<br/><br/>It does not appear 0048-typo-fix-for-obj-pod.patch has been applied.<br/><br/>&gt; 0012-typo-fixes-for-Unicode-module.patch<br/>&gt; 0020-typo-fixes-for-Math-BigInt.patch<br/>&gt; <br/>&gt; They did not apply cleanly with &#39;git am&#39;. Perhaps blead changed since<br/>&gt; these patches were created.<br/>&gt; <br/>&gt; David, can you re-do these patches -- and, if the revisions alter &#39;.pm&#39;<br/>&gt; files, bump up $VERSION (usually +0.01) in those files as well?<br/><br/>Will do.<br/><br/>---<br/>via perlbug: queue: perl5 status: open<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118085<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202279.html Sun, 26 May 2013 01:06:13 +0000 [perl #118169] subroutine arguments are no longer shown in perl debugger ( x @_ in perl -d) by James E Keenan via RT On Fri May 24 22:24:07 2013, dotandimet@gmail.com wrote:<br/>&gt; <br/>&gt; <br/>&gt; This is a bug report for perl from dotan@corky.net,<br/>&gt; generated with the help of perlbug 1.39 running under perl 5.18.0.<br/>&gt; <br/>&gt; <br/>&gt; -----------------------------------------------------------------<br/>&gt; In perl 5.18.0, @_ isn&#39;t visible in the debugger (perl -d).<br/>&gt; You can&#39;t inspect it with x (eval/dump) or w (watch).<br/>&gt; <br/>&gt; Example:<br/>&gt; perl -dE &#39;sub f { say $_ for (@_); $a = $_[1]; say $a;}; f(4,25,7);&#39;<br/>&gt; DB&lt;1&gt; s<br/>&gt; ...<br/>&gt; DB&lt;1&gt; x @_<br/>&gt; empty array<br/>&gt; <br/>&gt; -----------------------------------------------------------------<br/>&gt; ---<br/>&gt; Flags:<br/>&gt; category=core<br/>&gt; severity=high<br/>&gt; ---<br/>&gt; Site configuration information for perl 5.18.0:<br/>&gt; <br/>&gt; Configured by dotandimet at Mon May 20 22:37:44 IDT 2013.<br/>&gt; <br/>&gt; Summary of my perl5 (revision 5 version 18 subversion 0)<br/>&gt; configuration:<br/>&gt; <br/><br/>This does seem to be a regression from 5.16.0:<br/><br/>#####<br/>$ /usr/local/bin/perl5.16.0 -d 118169-debug.pl <br/><br/>Loading DB routines from perl5db.pl version 1.37<br/>Editor support available.<br/><br/>Enter h or &#39;h h&#39; for help, or &#39;man perldebug&#39; for more help.<br/><br/>main::(118169-debug.pl:4): use Data::Dumper;$Data::Dumper::Indent=1;<br/> DB&lt;1&gt; n<br/>main::(118169-debug.pl:7): f(4,25,7);<br/> DB&lt;1&gt; s<br/>main::f(118169-debug.pl:10): say $_ for (@_);<br/> DB&lt;1&gt; x @_<br/>0 4<br/>1 25<br/>2 7<br/>#####<br/><br/>---<br/>via perlbug: queue: perl5 status: new<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118169<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202278.html Sun, 26 May 2013 00:33:57 +0000 [perl #118177] doc patch: File::Copy pod Synopsis section by James E Keenan via RT On Sat May 25 12:30:05 2013, b_jonas wrote:<br/>&gt; This is a bug report for perl from ambrus@math.bme.hu,<br/>&gt; generated with the help of perlbug 1.39 running under perl 5.16.3.<br/>&gt; <br/>&gt; <br/>&gt; -----------------------------------------------------------------<br/>&gt; [Please describe your issue here]<br/>&gt; <br/>&gt; <br/>&gt; Attached patch based on blead changes the pod of File::Copy so that<br/>&gt; the Synopsis section more clearly demonstrates whether the order of<br/>&gt; arguments for the copy and move functions is source-dest or<br/>&gt; dest-source.<br/>&gt; <br/>&gt; Please verify that I&#39;ve used the correct order. The stakes are high:<br/>&gt; if we put the wrong order in the docs, people might end up silently<br/>&gt; overwriting useful files. If you&#39;ve checked, please apply.<br/>&gt; <br/><br/>These changes are +1 by me. But since you have correctly identified the<br/>stakes involved, I&#39;ll let other people weigh in.<br/><br/>Thank you very much.<br/>Jim Keenan<br/><br/><br/>---<br/>via perlbug: queue: perl5 status: new<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118177<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202277.html Sun, 26 May 2013 00:25:22 +0000 [perl #118175] threaded perl-5.18.0 fails re/pat_rt_report_thr.t on i586 by James E Keenan via RT On Sat May 25 09:36:11 2013, shlomif@shlomifish.org wrote:<br/>&gt; This is a bug report for perl from shlomif@shlomifish.org,<br/>&gt; generated with the help of perlbug 1.39 running under perl 5.16.3.<br/>&gt; <br/>&gt; Threaded perl-5.18.0 fails the re/pat_rt_report_thr.t test script on<br/>&gt; Mageia Linux 3 i586 (32-bit x86 - NOT x86-64). To reproduce, use<br/>&gt; Mageia Linux<br/>&gt; 3 and either of the following build files:<br/>&gt; <br/>&gt; [QUOTE]<br/>&gt; #!/bin/bash<br/>&gt; <br/>&gt; # This script reproduces a failure at the &quot;make test&quot; stage with perl-<br/>&gt; 5.18.0<br/>&gt; # on i586 Mageia Linux 3 (and Mageia Linux Cauldron).<br/>&gt; #<br/>&gt; # To reproduce do:<br/>&gt; # tar -xvf perl-5.18.0.tar.bz2.<br/>&gt; # cd perl-5.18.0.<br/>&gt; # bash ~/build-perl-on-i586-with-failure/build-perl-with-failure.bash<br/>&gt; # make<br/>&gt; # make test<br/>&gt; <br/>&gt; # Based on the Mageia&#39;s perl-5.18.0-1&#39;s .src.rpm&#39;s .spec.<br/>&gt; <br/>&gt; sh Configure -des \<br/>&gt; -Doptimize=&#39;-O2&#39; -DDEBUGGING=-g \<br/>&gt; -Dperllibs=&#39;-lnsl -ldl -lm -lcrypt -lutil -lc -pthread&#39; \<br/>&gt; -Ud_csh \<br/>&gt; -Duseshrplib \<br/>&gt; -Duseithreads \<br/>&gt; <br/><br/>I built with these arguments on dromedary and all tests passed. Now,<br/>dromedary is x86_64; I don&#39;t have a Linux 586 available.<br/><br/>That suggests that the test failures you witnessed are specific to the<br/>platform/OS/options combination chosen.<br/><br/>I would recommend trying other builds on this system, adding one<br/>argument at a time until the failing tests emerge.<br/><br/>Thank you very much.<br/>Jim Keenan<br/><br/>---<br/>via perlbug: queue: perl5 status: new<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118175<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202276.html Sun, 26 May 2013 00:19:28 +0000 Re: RFC: Removing CGI.pm from the core distribution by Aristotle Pagaltzis * Alexandr Ciornii &lt;alexchorny@gmail.com&gt; [2013-05-24 11:10]:<br/>&gt; It would not be easy to do on web hosting which does not has<br/>&gt; possibility of installing modules from CPAN.<br/><br/>* Johan Vromans &lt;jvromans@squirrel.nl&gt; [2013-05-24 14:05]:<br/>&gt; As a core module, CGI.pm is guaranteed to be there, and it will work.<br/>&gt; If you want something quick and simple, CGI.pm is the obvious choice.<br/>&gt;<br/>&gt; As a CPAN module, you&#39;ll have to install it yourself, if you can, and<br/>&gt; there&#39;s no guarantee it will work.<br/><br/>Sirs, please, if I can beg your pardon, may I point you collectively in<br/>the direction of App::FatPacker, if it&rsquo;s no trouble.<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202275.html Sat, 25 May 2013 22:48:57 +0000 Re: I made t/podcheck.t less sensitive and fixed various podissues by Dave Rolsky On Thu, 23 May 2013, David Golden wrote:<br/><br/>&gt; To be clear, I think the more aggressive pod linting -- particularly<br/>&gt; the C&lt;&gt; suggestions -- could still be done periodically by those<br/>&gt; interested in actually fixing (not just flagging) such issues, because<br/>&gt; I think they are ultimately good suggestions.<br/>&gt;<br/>&gt; That said, I feel very strongly that style linting along those lines<br/>&gt; should *not* cause test failures that interrupt ongoing development,<br/>&gt; which is why I made the changes described above.<br/><br/>It&#39;d be awesome if someone could make a git commit/push hook that would <br/>check this sort of stuff. The git remote we push to could tell you how to <br/>set up the relevant local hook as part of its error message.<br/><br/><br/>-dave<br/><br/>/*============================================================<br/>http://VegGuide.org http://blog.urth.org<br/>Your guide to all that&#39;s veg House Absolute(ly Pointless)<br/>============================================================*/<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202274.html Sat, 25 May 2013 22:03:29 +0000 Re: RFC: Removing CGI.pm from the core distribution by Greg Lindahl On Sat, May 25, 2013 at 03:17:10PM -0600, Curtis Jewell wrote:<br/><br/>&gt; &gt; Hosting provider: Here&#39;s your system. Good luck.<br/>&gt; &gt; Client: Hey, I need perl!<br/>&gt; &gt; Hosting provider: Perl&#39;s on the system.<br/>&gt; &gt; Client: But I need to install modules to get my web application going.<br/>&gt; &gt; Hosting provider: Can&#39;t do. Please use php / ruby / ... instead. <br/>&gt; <br/>&gt; I have to admit that I work for a hosting provider (a large one,<br/>&gt; however,) and I know they&#39;re not like that. I remember talking to one of<br/>&gt; our tech support agents who helped a customer install Catalyst, for<br/>&gt; example.<br/><br/>I don&#39;t think it will be that big of an issue. Linux distros with<br/>perl-5.18 are going to make a perl-CGI package, and all the hosting<br/>provider has to do is add that to their list.<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202273.html Sat, 25 May 2013 21:25:12 +0000 Re: RFC: Removing CGI.pm from the core distribution by Curtis Jewell On Fri, May 24, 2013, at 5:53, Johan Vromans wrote:<br/>&gt; demerphq &lt;demerphq@gmail.com&gt; writes:<br/>&gt; <br/>&gt; &gt;&gt; It would not be easy to do on web hosting which does not has<br/>&gt; &gt;&gt; possibility of installing modules from CPAN. Also currently CGI.pm<br/>&gt; &gt;&gt; requires FCGI which requires compiler which frequently is not<br/>&gt; &gt;&gt; installed.<br/>&gt; &gt;<br/>&gt; &gt; Maybe the consequence of this would be that hosting services start<br/>&gt; &gt; adopting a more progressive approach to this subject.<br/>&gt; <br/>&gt; That would have been so several years ago. I don&#39;t think it works like<br/>&gt; that nowadays.<br/>&gt; <br/>&gt; Hosting provider: Here&#39;s your system. Good luck.<br/>&gt; Client: Hey, I need perl!<br/>&gt; Hosting provider: Perl&#39;s on the system.<br/>&gt; Client: But I need to install modules to get my web application going.<br/>&gt; Hosting provider: Can&#39;t do. Please use php / ruby / ... instead. <br/><br/>I have to admit that I work for a hosting provider (a large one,<br/>however,) and I know they&#39;re not like that. I remember talking to one of<br/>our tech support agents who helped a customer install Catalyst, for<br/>example.<br/><br/>--Curtis<br/>--<br/>Curtis Jewell<br/>csjewell@cpan.org http://csjewell.dreamwidth.org/<br/>perl@csjewell.fastmail.us http://csjewell.comyr.org/perl/<br/><br/>&quot;Your random numbers are not that random&quot; -- perl-5.10.1.tar.gz/util.c<br/><br/>Strawberry Perl for Windows betas: http://strawberryperl.com/beta/<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202272.html Sat, 25 May 2013 21:17:24 +0000 [perl #118177] doc patch: File::Copy pod Synopsis section by Zsban Ambrus # New Ticket Created by Zsban Ambrus <br/># Please include the string: [perl #118177]<br/># in the subject line of all future correspondence about this issue. <br/># &lt;URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=118177 &gt;<br/><br/><br/>This is a bug report for perl from ambrus@math.bme.hu,<br/>generated with the help of perlbug 1.39 running under perl 5.16.3.<br/><br/><br/>-----------------------------------------------------------------<br/>[Please describe your issue here]<br/><br/><br/>Attached patch based on blead changes the pod of File::Copy so that<br/>the Synopsis section more clearly demonstrates whether the order of<br/>arguments for the copy and move functions is source-dest or<br/>dest-source.<br/><br/>Please verify that I&#39;ve used the correct order. The stakes are high:<br/>if we put the wrong order in the docs, people might end up silently<br/>overwriting useful files. If you&#39;ve checked, please apply.<br/><br/>Thanks,<br/><br/>Ambrus<br/><br/><br/><br/>[Please do not change anything below this line]<br/>-----------------------------------------------------------------<br/>---<br/>Flags:<br/> category=docs<br/> severity=low<br/>---<br/>Site configuration information for perl 5.16.3:<br/><br/>Configured by ambrus at Sun May 12 14:36:09 CEST 2013.<br/><br/>Summary of my perl5 (revision 5 version 16 subversion 3) configuration:<br/><br/> Platform:<br/> osname=linux, osvers=2.6.37, archname=x86_64-linux<br/> uname=&#39;linux king 2.6.37 #6 smp sun mar 13 20:15:05 cet 2011<br/>x86_64 gnulinux &#39;<br/> config_args=&#39;-der&#39;<br/> hint=previous, useposix=true, d_sigaction=define<br/> useithreads=undef, usemultiplicity=undef<br/> useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef<br/> use64bitint=define, use64bitall=define, uselongdouble=undef<br/> usemymalloc=n, bincompat5005=undef<br/> Compiler:<br/> cc=&#39;cc&#39;, ccflags =&#39;-fno-strict-aliasing -pipe -fstack-protector<br/>-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#39;,<br/> optimize=&#39;-O2&#39;,<br/> cppflags=&#39;-fno-strict-aliasing -pipe -fstack-protector<br/>-I/usr/local/include -fno-strict-aliasing -pipe -fstack-protector<br/>-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64<br/>-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include<br/>-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#39;<br/> ccversion=&#39;&#39;, gccversion=&#39;4.7.1&#39;, gccosandvers=&#39;&#39;<br/> intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678<br/> d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16<br/> ivtype=&#39;long&#39;, ivsize=8, nvtype=&#39;double&#39;, nvsize=8, Off_t=&#39;off_t&#39;,<br/>lseeksize=8<br/> alignbytes=8, prototype=define<br/> Linker and Libraries:<br/> ld=&#39;cc&#39;, ldflags =&#39; -fstack-protector -L/usr/local/lib&#39;<br/> libpth=/usr/local/lib /lib/../lib /usr/lib/../lib /lib /usr/lib<br/>/lib64 /usr/lib64 /usr/local/lib64<br/> libs=-lnsl -ldl -lm -lcrypt -lutil -lc<br/> perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc<br/> libc=/lib/libc-2.11.3.so, so=so, useshrplib=false, libperl=libperl.a<br/> gnulibc_version=&#39;2.11.3&#39;<br/> Dynamic Linking:<br/> dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=&#39;-Wl,-E&#39;<br/> cccdlflags=&#39;-fPIC&#39;, lddlflags=&#39;-shared -O2 -L/usr/local/lib<br/>-fstack-protector&#39;<br/><br/>Locally applied patches:<br/><br/><br/>---<br/>@INC for perl 5.16.3:<br/> /usr/local/perl5.16/lib/perl5/site_perl/5.16.3/x86_64-linux<br/> /usr/local/perl5.16/lib/perl5/site_perl/5.16.3<br/> /usr/local/perl5.16/lib/perl5/5.16.3/x86_64-linux<br/> /usr/local/perl5.16/lib/perl5/5.16.3<br/> /usr/local/perl5.16/lib/perl5/site_perl/5.16.1<br/> /usr/local/perl5.16/lib/perl5/site_perl/5.16.1/x86_64-linux<br/> /usr/local/perl5.16/lib/perl5/site_perl<br/> .<br/><br/>---<br/>Environment for perl 5.16.3:<br/> HOME=/home/ambrus<br/> LANG (unset)<br/> LANGUAGE (unset)<br/> LC_CTYPE=hu_HU<br/> LD_LIBRARY_PATH=/home/ambrus/local/lib/<br/> LOGDIR (unset)<br/> PATH=/home/ambrus/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games<br/> PERL_BADLANG (unset)<br/> SHELL=/usr/local/bin/bash<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202271.html Sat, 25 May 2013 19:30:29 +0000 [perl #118159] SvTRUE changed behavior in 5.18 by Father Chrysostomos via RT On Fri May 24 21:06:07 2013, tonyc wrote:<br/>&gt; On Fri, May 24, 2013 at 01:42:52PM -0700, Greg Lindahl wrote:<br/>&gt; &gt; # New Ticket Created by Greg Lindahl<br/>&gt; &gt; # Please include the string: [perl #118159]<br/>&gt; &gt; # in the subject line of all future correspondence about this issue.<br/>&gt; &gt; # &lt;URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=118159 &gt;<br/>&gt; &gt;<br/>&gt; &gt;<br/>&gt; &gt;<br/>&gt; &gt; This is a bug report for perl from lindahl@pbm.com,<br/>&gt; &gt; generated with the help of perlbug 1.39 running under perl 5.18.0.<br/>&gt; &gt;<br/>&gt; &gt;<br/>&gt; &gt; -----------------------------------------------------------------<br/>&gt; &gt; [Please describe your issue here]<br/>&gt; &gt;<br/>&gt; &gt; In upgrading the blekko search engine backend to Perl 5.18.0, one of<br/>&gt; &gt; our engineers noticed a change in the behavior in SvTRUE.<br/>&gt; &gt;<br/>&gt; &gt; $ perl -MScalar::Util=dualvar -le &#39;print $]; $a = dualvar 1, &quot;&quot;;<br/>&gt; print $a ? &quot;true&quot; : &quot;false&quot;;&#39;<br/>&gt; &gt; 5.008008<br/>&gt; &gt; false<br/>&gt; &gt;<br/>&gt; &gt; $ perl -MScalar::Util=dualvar -le &#39;print $]; $a = dualvar 1, &quot;&quot;;<br/>&gt; print $a ? &quot;true&quot; : &quot;false&quot;;&#39;<br/>&gt; &gt; 5.016000<br/>&gt; &gt; false<br/>&gt; &gt;<br/>&gt; &gt; $ perl -MScalar::Util=dualvar -le &#39;print $]; $a = dualvar 1, &quot;&quot;;<br/>&gt; print $a ? &quot;true&quot; : &quot;false&quot;;&#39;<br/>&gt; &gt; 5.018000<br/>&gt; &gt; true<br/>&gt; &gt;<br/>&gt; &gt; Is this intended? We were surprised.<br/>&gt; &gt;<br/>&gt; &gt; It became visible to us because some Graphics Magik functions return<br/>&gt; &gt; an XS-generated return value which is typically 1 and &#39;&#39; (indicating<br/>&gt; 1<br/>&gt; &gt; image extracted and no error), and our code then uses &quot;if&quot; to test<br/>&gt; for<br/>&gt; &gt; an error.<br/>&gt; &gt;<br/>&gt; &gt; Graphics Magick doesn&#39;t document this return value and does not test<br/>&gt; it.<br/>&gt; &gt;<br/>&gt; &gt; We don&#39;t have an opinion about what behavior is correct here, but it<br/>&gt; &gt; is surprising that something so fundamental would change.<br/>&gt; <br/>&gt; This appears to have changed in 4bac9ae4.<br/>&gt; <br/>&gt; Previously SvTRUE was:<br/>&gt; <br/>&gt; # define SvTRUE(sv) ( \<br/>&gt; !sv<br/>&gt; \<br/>&gt; ? 0<br/>&gt; \<br/>&gt; : SvPOK(sv) \<br/>&gt; ? (({XPV *nxpv = (XPV*)SvANY(sv); \<br/>&gt; nxpv &amp;&amp; \<br/>&gt; (nxpv-&gt;xpv_cur &gt; 1 || \<br/>&gt; (nxpv-&gt;xpv_cur &amp;&amp; *(sv)-&gt;sv_u.svu_pv != &#39;0&#39;)); }) \<br/>&gt; ? 1 \<br/>&gt; : 0) \<br/>&gt; : \<br/>&gt; SvIOK(sv) \<br/>&gt; ? SvIVX(sv) != 0 \<br/>&gt; : SvNOK(sv) \<br/>&gt; ? SvNVX(sv) != 0.0 \<br/>&gt; : sv_2bool(sv) )<br/>&gt; <br/>&gt; which checks *only* the PV part of the scalar if the scalar is flagged<br/>&gt; as a PV.<br/>&gt; <br/>&gt; The new version, largely in SvTRUE_common():<br/>&gt; <br/>&gt; #define SvTRUE_common(sv,fallback) ( \<br/>&gt; !SvOK(sv) \<br/>&gt; ? 0 \<br/>&gt; : (SvFLAGS(sv) &amp; (SVf_POK|SVf_IOK|SVf_NOK)) \<br/>&gt; ? ( (SvPOK(sv) &amp;&amp; SvPVXtrue(sv)) \<br/>&gt; || (SvIOK(sv) &amp;&amp; SvIVX(sv) != 0) \<br/>&gt; || (SvNOK(sv) &amp;&amp; SvNVX(sv) != 0.0)) \<br/>&gt; : (fallback))<br/>&gt; <br/>&gt; checks each part of the SV until it finds a true part (if any).<br/>&gt; <br/>&gt; Tony<br/>&gt; <br/><br/>I can&acirc;&#128;&#153;t believe I missed that when reviewing the patch in question. <br/>Traditionally, truth was based solely on stringification. The<br/>examination of the SvIVX and SvNVX slots was for those cases where there<br/>was no string already and it could be deduced from IVX or NVX whether it<br/>would stringify as &quot;0&quot; or no (bugs with -0 aside).<br/><br/>So this seems like a bug to me. Should we change it back?<br/><br/>-- <br/><br/>Father Chrysostomos<br/><br/><br/>---<br/>via perlbug: queue: perl5 status: open<br/>https://rt.perl.org:443/rt3/Ticket/Display.html?id=118159<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202270.html Sat, 25 May 2013 18:20:43 +0000 Re: Global interpreter destruction callback by Steffen Mueller On 05/25/2013 06:12 PM, Vincent Pit wrote:<br/>&gt; Do you have an example where a callback set up with call_atexit() is<br/>&gt; executed too early in the global destruction phase? It is supposed to<br/>&gt; fire after all SVs are freed (except for some globals).<br/><br/>Without much checking (can&#39;t right now), I think this might just be what <br/>I need. I have to admit that I didn&#39;t search much for this functionality <br/>since when I originally needed it, I did and couldn&#39;t find it. Odd.<br/><br/>Thanks!<br/><br/>--Steffen<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202269.html Sat, 25 May 2013 17:34:36 +0000 [perl #116152] [PATCH] stop "sv_2mortal(&PL_sv_yes)" and "(void)sv_newmortal()" in ParseXS by Steffen Mueller via RT I munged the supplied patch to apply on top of my smueller/eupxs_ng2 <br/>branch and it passes tests. I plan to carefully smoke CPAN against that <br/>branch, which has further changes to ExtUtils::ParseXS, and then merge it <br/>into blead. So since this patch landing on blead is practically <br/>inevitable, I&#39;m marking this as resolved to avoid forgetting about it <br/>later.<br/><br/>Thanks for persisting!<br/><br/>--Steffen<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202268.html Sat, 25 May 2013 17:31:43 +0000 Localizing @ARGV prevents magic <> behavior later by demerphq Would I be right that this does not die is a bug?<br/><br/>It has failed for as long as Porting/bisect.pl can test.<br/><br/>$ seq 3 | perl bug.pl<br/>my $s= do { local (@ARGV,$/)= ($0); &lt;&gt; };<br/>print $s;<br/>while (&lt;&gt;) { die $_ };<br/>print &quot;did not die\n&quot;;<br/>__END__<br/>did not die<br/><br/><br/>$ ../perl/Porting/bisect.pl --target=miniperl -Dcc=ccache\ gcc<br/>-Dld=gcc -- ../bug.sh<br/>[....]<br/>Can&#39;t find a suitable start revision to default to.<br/>Tried perl-5.002 perl-5.003 perl-5.004 perl-5.005 perl-5.6.0<br/>perl-5.8.0 v5.10.0 v5.12.0 v5.14.0 v5.16.0 v5.18.0 at<br/>../perl/Porting/bisect.pl line 214.<br/>That took 364 seconds<br/><br/>$ cat ../bug.sh<br/>#!/bin/bash<br/>seq 3 | ./miniperl ../bug.pl<br/>$ cat ../bug.pl<br/>my $s= do { local (@ARGV,$/)= ($0); &lt;&gt; };<br/>print $s;<br/>while (&lt;&gt;) { exit 0 }<br/>exit 1;<br/>__END__<br/><br/><br/>--<br/>perl -Mre=debug -e &quot;/just|another|perl|hacker/&quot;<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202267.html Sat, 25 May 2013 17:02:11 +0000 Re: Modules unbuildable on 5.18.0 by H.Merijn Brand On Sat, 25 May 2013 14:03:53 +0300, Shlomi Fish<br/>&lt;shlomif@shlomifish.org&gt; wrote:<br/><br/>&gt; Hi all,<br/>&gt; <br/>&gt; On Fri, 24 May 2013 12:02:50 +0200<br/>&gt; &quot;H.Merijn Brand&quot; &lt;h.m.brand@xs4all.nl&gt; wrote:<br/>&gt; <br/>&gt; &gt; Some modules needed a bit of manual intervention of ignoring (pod),<br/>&gt; &gt; but these would take too much time<br/>&gt; &gt; <br/>&gt; &gt; Graph::Easy<br/>&gt; <br/>&gt; Should be fixed in 0.73. Thanks for you and for someone on IRC for bringing it<br/>&gt; to my attention.<br/><br/>That was also me :)<br/><br/>Thanks for the prompt action though.<br/><br/>-- <br/>H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/<br/>using perl5.00307 .. 5.17 porting perl5 on HP-UX, AIX, and openSUSE<br/>http://mirrors.develooper.com/hpux/ http://www.test-smoke.org/<br/>http://qa.perl.org http://www.goldmark.org/jeff/stupid-disclaimers/<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202266.html Sat, 25 May 2013 16:49:12 +0000 [perl #118175] threaded perl-5.18.0 fails re/pat_rt_report_thr.t on i586 by shlomif @ shlomifish . org # New Ticket Created by shlomif@shlomifish.org <br/># Please include the string: [perl #118175]<br/># in the subject line of all future correspondence about this issue. <br/># &lt;URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=118175 &gt;<br/><br/><br/>This is a bug report for perl from shlomif@shlomifish.org,<br/>generated with the help of perlbug 1.39 running under perl 5.16.3.<br/><br/>Threaded perl-5.18.0 fails the re/pat_rt_report_thr.t test script on<br/>Mageia Linux 3 i586 (32-bit x86 - NOT x86-64). To reproduce, use Mageia Linux<br/>3 and either of the following build files:<br/><br/>[QUOTE]<br/>#!/bin/bash<br/><br/># This script reproduces a failure at the &quot;make test&quot; stage with perl-5.18.0<br/># on i586 Mageia Linux 3 (and Mageia Linux Cauldron).<br/>#<br/># To reproduce do:<br/># tar -xvf perl-5.18.0.tar.bz2.<br/># cd perl-5.18.0.<br/># bash ~/build-perl-on-i586-with-failure/build-perl-with-failure.bash<br/># make<br/># make test<br/><br/># Based on the Mageia&#39;s perl-5.18.0-1&#39;s .src.rpm&#39;s .spec.<br/><br/>sh Configure -des \<br/> -Doptimize=&#39;-O2&#39; -DDEBUGGING=-g \<br/> -Dperllibs=&#39;-lnsl -ldl -lm -lcrypt -lutil -lc -pthread&#39; \<br/> -Ud_csh \<br/> -Duseshrplib \<br/> -Duseithreads \<br/><br/><br/>[/QUOTE]<br/><br/>[QUOTE]<br/>#!/bin/bash<br/><br/># This script reproduces a failure at the &quot;make test&quot; stage with perl-5.18.0<br/># on i586 Mageia Linux 3 (and Mageia Linux Cauldron).<br/>#<br/># To reproduce do:<br/># tar -xvf perl-5.18.0.tar.bz2.<br/># cd perl-5.18.0.<br/># bash ~/build-perl-on-i586-with-failure/build-perl-with-failure.bash<br/># make<br/># make test<br/><br/># Based on the Mageia&#39;s perl-5.18.0-1&#39;s .src.rpm&#39;s .spec.<br/><br/>sh Configure -des \<br/> -Dinc_version_list=&quot;5.18.0 5.16.3 5.16.3 5.16.2 5.16.2 5.16.1 5.16.1 5.16.0<br/>5.16.0 5.14.2 5.14.1 5.14.0&quot; \ -Dcc=&#39;/usr/bin/gcc&#39; \<br/> -Doptimize=&#39;-O2&#39; -DDEBUGGING=-g \<br/>-Dmyhostname=localhost -Dperladmin=root@localhost \<br/> -Dcf_email=root@localhost \<br/> -Dperllibs=&#39;-lnsl -ldl -lm -lcrypt -lutil -lc -pthread&#39; \<br/> -Ud_csh \<br/> -Duseshrplib \<br/> -Duseithreads \<br/> -Di_db \<br/> -Di_ndbm \<br/> -Di_gdbm \<br/><br/><br/>[/QUOTE]<br/><br/>This bug was discovered when building perl-5.18.0 for the Mageia development<br/>version by Olivier Blin, and more info about reproducing can be found at:<br/><br/>https://github.com/shlomif/build-perl-with-failure-on-i586<br/><br/>The test failures are:<br/><br/>[QUOTE]<br/># Failed test 55 - UTF-8 regex matches above 32k; Bug 20020630.002 at<br/>re/pat_rt_report.t line 224 # &lt;utf8 x 32000&gt;; pos = 1<br/># Failed test 57 - UTF-8 regex matches above 32k; Bug 20020630.002 at<br/>re/pat_rt_report.t line 224 # &lt;utf8 x 32768&gt;; pos = 1<br/># Failed test 59 - UTF-8 regex matches above 32k; Bug 20020630.002 at<br/>re/pat_rt_report.t line 224 # &lt;utf8 x 33000&gt;; pos = 1<br/>re/pat_rt_report_thr.t .. <br/>1..2530<br/># running tests in a new thread<br/>ok 1 - Match UTF-8 char in presence of (??{ }); Bug 20000731.001<br/>ok 2 - Used to cause a SEGV; Bug 20001021.005<br/>ok 3 - bug id 20001008.001<br/>ok 4 - bug id 20001008.001<br/>ok 5 - bug id 20001008.001<br/>ok 6 - bug id 20001008.001<br/>ok 7 - bug id 20001008.001<br/>ok 8 - bug id 20001008.001<br/>ok 9 - bug id 20001008.001<br/>ok 10 - bug id 20001008.001<br/>ok 11 - HEBREW ACCENT QADMA matched by .*; Bug 20001028.003<br/>ok 12 - HEBREW ACCENT QADMA matched by .*; Bug 20001028.003<br/>ok 13 - HEBREW ACCENT QADMA matched by .*; Bug 20001028.003<br/>ok 14 - HEBREW ACCENT QADMA in replacement; Bug 20001028.003<br/>ok 15 - HEBREW ACCENT QADMA in replacement; Bug 20001028.003<br/>ok 16 - Repeated s///; Bug 20001108.001<br/>ok 17 - Repeated s///; Bug 20001108.001<br/>ok 18 - s/// on UTF-8 string; Bug 20000517.001<br/>ok 19 - s/// on UTF-8 string; Bug 20000517.001<br/>ok 20 - \C and &Atilde;&#137;; Bug 20001230.002<br/>ok 21 - \C and &Atilde;&#137;; Bug 20001230.002<br/>ok 22 - Don&#39;t dump core; Bug 20010306.008<br/>ok 23 - /g in scalar context; Bug 20010410.006<br/>ok 24 - /g in scalar context; Bug 20010410.006<br/>ok 25 - /g in scalar context; Bug 20010410.006<br/>ok 26 - /g in scalar context; Bug 20010410.006<br/>ok 27 - /g in scalar context; Bug 20010410.006<br/>ok 28 - \012 not in [[:print:]]; Bug 20010619.003<br/>ok 29 - \011 not in [[:print:]]; Bug 20010619.003<br/>ok 30 - \014 not in [[:print:]]; Bug 20010619.003<br/>ok 31 - \015 not in [[:print:]]; Bug 20010619.003<br/>ok 32 - &#39; &#39; in [[:print:]]; Bug 20010619.003<br/>ok 33 - pos() works with () = m//; Bug 20010814.004<br/>ok 34 - UTF-8 return values from functions; Bug 20010407.006<br/>ok 35 - UTF-8 return values from functions; Bug 20010407.006<br/>ok 36 - UTF-8 return values from functions; Bug 20010407.006<br/>ok 37 - UTF-8 return values from functions; Bug 20010407.006<br/>ok 38 - High bit fine<br/>ok 39 - UTF-8 hash keys and /$/<br/>ok 40 - UTF-8 hash keys and /$/<br/>ok 41 - UTF-8 hash keys and /$/<br/>ok 42 - s///eg [change 13f46d054db22cf4]; Bug 20020124.005<br/>ok 43 - s///eg [change 13f46d054db22cf4]; Bug 20020124.005<br/>ok 44 - s///eg [change 13f46d054db22cf4]; Bug 20020124.005<br/>ok 45 - Correct pmop flags checked when empty pattern; Bug 20020412.005<br/>ok 46 - Correct pmop flags checked when empty pattern; Bug 20020412.005<br/>ok 47 - Correct pmop flags checked when empty pattern; Bug 20020412.005<br/>ok 48 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 49 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 50 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 51 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 52 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 53 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 54 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>not ok 55 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 56 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>not ok 57 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 58 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>not ok 59 - UTF-8 regex matches above 32k; Bug 20020630.002<br/>ok 60 - No panic: end_shift [change 0e933229fa758625]<br/>[/QUOTE]<br/><br/>Regards,<br/><br/>-- Shlomi Fish<br/>---<br/>Flags:<br/> category=core<br/> severity=low<br/>---<br/>Site configuration information for perl 5.16.3:<br/><br/>Configured by Mageia at Sun Mar 17 18:51:26 UTC 2013.<br/><br/>Summary of my perl5 (revision 5 version 16 subversion 3) configuration:<br/> <br/> Platform:<br/> osname=linux, osvers=3.4.24-server-3.mga2, archname=i386-linux-thread-multi<br/> uname=&#39;linux jonund.mageia.org 3.4.24-server-3.mga2 #1 smp sat jan 5<br/>03:09:04 utc 2013 i686 i686 i686 gnulinux &#39; config_args=&#39;-des<br/>-Dinc_version_list=5.16.3 5.16.3/i386-linux-thread-multi 5.16.2<br/>5.16.2/i386-linux-thread-multi 5.16.1 5.16.1/i386-linux-thread-multi 5.16.0<br/>5.16.0/i386-linux-thread-multi 5.14.2 5.14.1 5.14.0 5.12.3 5.12.2 5.12.1 5.12.0<br/>-Darchname=i386-linux -Dcc=gcc -Doptimize=-O2 -g -pipe -Wformat<br/>-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector<br/>--param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic<br/>-fasynchronous-unwind-tables -Wl,--as-needed -Wl,-z,relro -Wl,-O1<br/>-Wl,--build-id -Wl,--enable-new-dtags -pthread -DDEBUGGING=-g -Dprefix=/usr<br/>-Dvendorprefix=/usr -Dsiteprefix=/usr -Dsitebin=/usr/local/bin<br/>-Dsiteman1dir=/usr/local/share/man/man1 -Dsiteman3dir=/usr/local/share/man/man3<br/>-Dman3dir=/usr/share/man/man3pm -Dvendorman3dir=/usr/share/man/man3<br/>-Dman3ext=3pm -Dcf_by=Mageia -Dmyhostname=localhost -Dperladmin=root@localhost<br/>-Dcf_email=root@localhost -Dperllibs=-lnsl -ldl -lm -lcrypt -lutil -lc -pthread<br/>-Ud_csh -Duseshrplib -Duseithreads -Di_db -Di_ndbm -Di_gdbm&#39; hint=recommended,<br/>useposix=true, d_sigaction=define useithreads=define, usemultiplicity=define<br/>useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef<br/>use64bitint=undef, use64bitall=undef, uselongdouble=undef usemymalloc=n,<br/>bincompat5005=undef Compiler: cc=&#39;gcc&#39;, ccflags =&#39;-D_REENTRANT -D_GNU_SOURCE<br/>-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include<br/>-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#39;, optimize=&#39;-O2 -g -pipe -Wformat<br/>-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector<br/>--param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic<br/>-fasynchronous-unwind-tables -Wl,--as-needed -Wl,-z,relro -Wl,-O1<br/>-Wl,--build-id -Wl,--enable-new-dtags -pthread&#39;, cppflags=&#39;-D_REENTRANT<br/>-D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector<br/>-I/usr/local/include&#39; ccversion=&#39;&#39;, gccversion=&#39;4.7.2&#39;, gccosandvers=&#39;&#39;<br/>intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234<br/>d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12<br/>ivtype=&#39;long&#39;, ivsize=4, nvtype=&#39;double&#39;, nvsize=8, Off_t=&#39;off_t&#39;, lseeksize=8<br/>alignbytes=4, prototype=define Linker and Libraries: ld=&#39;gcc&#39;, ldflags =&#39;<br/>-fstack-protector -L/usr/local/lib&#39; libpth=/usr/local/lib /lib /usr/lib<br/>libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc -lgdbm_compat<br/>perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc libc=/lib/libc-2.17.so,<br/>so=so, useshrplib=true, libperl=libperl.so gnulibc_version=&#39;2.17&#39; Dynamic<br/>Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=&#39;-Wl,-E<br/>-Wl,-rpath,/usr/lib/perl5/5.16.3/i386-linux-thread-multi/CORE&#39;<br/>cccdlflags=&#39;-fPIC&#39;, lddlflags=&#39;-shared -O2 -g -pipe -Wformat<br/>-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector<br/>--param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic<br/>-fasynchronous-unwind-tables -Wl,--as-needed -Wl,-z,relro -Wl,-O1<br/>-Wl,--build-id -Wl,--enable-new-dtags -pthread -L/usr/local/lib&#39;<br/><br/>Locally applied patches:<br/> Mageia patches<br/><br/>---<br/>@INC for perl 5.16.3:<br/> /usr/lib/perl5/site_perl/5.16.3/i386-linux-thread-multi<br/> /usr/lib/perl5/site_perl/5.16.3<br/> /usr/lib/perl5/vendor_perl/5.16.3/i386-linux-thread-multi<br/> /usr/lib/perl5/vendor_perl/5.16.3<br/> /usr/lib/perl5/5.16.3/i386-linux-thread-multi<br/> /usr/lib/perl5/5.16.3<br/> /usr/lib/perl5/site_perl/5.16.3<br/> /usr/lib/perl5/site_perl/5.16.3/i386-linux-thread-multi<br/> /usr/lib/perl5/site_perl<br/> /usr/lib/perl5/vendor_perl/5.16.3<br/> /usr/lib/perl5/vendor_perl/5.16.3/i386-linux-thread-multi<br/> /usr/lib/perl5/vendor_perl/5.16.2<br/> /usr/lib/perl5/vendor_perl/5.16.2/i386-linux-thread-multi<br/> /usr/lib/perl5/vendor_perl<br/> .<br/><br/>---<br/>Environment for perl 5.16.3:<br/> HOME=/home/shlomif_vm<br/> LANG=en_US.UTF-8<br/> LANGUAGE=en_US.UTF-8:en_US:en<br/> LC_ADDRESS=en_US.UTF-8<br/> LC_COLLATE=en_US.UTF-8<br/> LC_CTYPE=en_US.UTF-8<br/> LC_IDENTIFICATION=en_US.UTF-8<br/> LC_MEASUREMENT=en_US.UTF-8<br/> LC_MESSAGES=en_US.UTF-8<br/> LC_MONETARY=en_US.UTF-8<br/> LC_NAME=en_US.UTF-8<br/> LC_NUMERIC=en_US.UTF-8<br/> LC_PAPER=en_US.UTF-8<br/> LC_SOURCED=1<br/> LC_TELEPHONE=en_US.UTF-8<br/> LC_TIME=en_US.UTF-8<br/> LD_LIBRARY_PATH (unset)<br/> LOGDIR (unset)<br/> PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/games<br/> PERL_BADLANG (unset)<br/> SHELL=/bin/bash<br/><br/>Complete configuration data for perl 5.16.3:<br/><br/>Author=&#39;&#39;<br/>CONFIG=&#39;true&#39;<br/>Date=&#39;$Date&#39;<br/>Header=&#39;&#39;<br/>Id=&#39;$Id&#39;<br/>Locker=&#39;&#39;<br/>Log=&#39;$Log&#39;<br/>PATCHLEVEL=&#39;16&#39;<br/>PERL_API_REVISION=&#39;5&#39;<br/>PERL_API_SUBVERSION=&#39;0&#39;<br/>PERL_API_VERSION=&#39;16&#39;<br/>PERL_CONFIG_SH=&#39;true&#39;<br/>PERL_PATCHLEVEL=&#39;&#39;<br/>PERL_REVISION=&#39;5&#39;<br/>PERL_SUBVERSION=&#39;3&#39;<br/>PERL_VERSION=&#39;16&#39;<br/>RCSfile=&#39;$RCSfile&#39;<br/>Revision=&#39;$Revision&#39;<br/>SUBVERSION=&#39;3&#39;<br/>Source=&#39;&#39;<br/>State=&#39;&#39;<br/>_a=&#39;.a&#39;<br/>_exe=&#39;&#39;<br/>_o=&#39;.o&#39;<br/>afs=&#39;false&#39;<br/>afsroot=&#39;/afs&#39;<br/>alignbytes=&#39;4&#39;<br/>ansi2knr=&#39;&#39;<br/>aphostname=&#39;&#39;<br/>api_revision=&#39;5&#39;<br/>api_subversion=&#39;0&#39;<br/>api_version=&#39;16&#39;<br/>api_versionstring=&#39;5.16.0&#39;<br/>ar=&#39;ar&#39;<br/>archlib=&#39;/usr/lib/perl5/5.16.3/i386-linux-thread-multi&#39;<br/>archlibexp=&#39;/usr/lib/perl5/5.16.3/i386-linux-thread-multi&#39;<br/>archname=&#39;i386-linux-thread-multi&#39;<br/>archname64=&#39;&#39;<br/>archobjs=&#39;&#39;<br/>asctime_r_proto=&#39;REENTRANT_PROTO_B_SB&#39;<br/>awk=&#39;awk&#39;<br/>baserev=&#39;5.0&#39;<br/>bash=&#39;&#39;<br/>bin=&#39;/usr/bin&#39;<br/>bin_ELF=&#39;define&#39;<br/>binexp=&#39;/usr/bin&#39;<br/>bison=&#39;bison&#39;<br/>byacc=&#39;byacc&#39;<br/>byteorder=&#39;1234&#39;<br/>c=&#39;&#39;<br/>castflags=&#39;0&#39;<br/>cat=&#39;cat&#39;<br/>cc=&#39;gcc&#39;<br/>cccdlflags=&#39;-fPIC&#39;<br/>ccdlflags=&#39;-Wl,-E -Wl,-rpath,/usr/lib/perl5/5.16.3/i386-linux-thread-multi/CORE&#39;<br/>ccflags=&#39;-D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe<br/>-fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE<br/>-D_FILE_OFFSET_BITS=64&#39; ccflags_nolargefiles=&#39;-D_REENTRANT -D_GNU_SOURCE<br/>-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include &#39;<br/>ccflags_uselargefiles=&#39;-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#39; ccname=&#39;gcc&#39;<br/>ccsymbols=&#39;&#39; ccversion=&#39;&#39;<br/>cf_by=&#39;Mageia&#39;<br/>cf_email=&#39;root@localhost&#39;<br/>cf_time=&#39;Sun Mar 17 18:51:26 UTC 2013&#39;<br/>charbits=&#39;8&#39;<br/>charsize=&#39;1&#39;<br/>chgrp=&#39;&#39;<br/>chmod=&#39;chmod&#39;<br/>chown=&#39;&#39;<br/>clocktype=&#39;clock_t&#39;<br/>comm=&#39;comm&#39;<br/>compress=&#39;&#39;<br/>config_arg0=&#39;Configure&#39;<br/>config_arg1=&#39;-des&#39;<br/>config_arg10=&#39;-Dsitebin=/usr/local/bin&#39;<br/>config_arg11=&#39;-Dsiteman1dir=/usr/local/share/man/man1&#39;<br/>config_arg12=&#39;-Dsiteman3dir=/usr/local/share/man/man3&#39;<br/>config_arg13=&#39;-Dman3dir=/usr/share/man/man3pm&#39;<br/>config_arg14=&#39;-Dvendorman3dir=/usr/share/man/man3&#39;<br/>config_arg15=&#39;-Dman3ext=3pm&#39;<br/>config_arg16=&#39;-Dcf_by=Mageia&#39;<br/>config_arg17=&#39;-Dmyhostname=localhost&#39;<br/>config_arg18=&#39;-Dperladmin=root@localhost&#39;<br/>config_arg19=&#39;-Dcf_email=root@localhost&#39;<br/>config_arg2=&#39;-Dinc_version_list=5.16.3 5.16.3/i386-linux-thread-multi 5.16.2<br/>5.16.2/i386-linux-thread-multi 5.16.1 5.16.1/i386-linux-thread-multi 5.16.0<br/>5.16.0/i386-linux-thread-multi 5.14.2 5.14.1 5.14.0 5.12.3 5.12.2 5.12.1<br/>5.12.0&#39; config_arg20=&#39;-Dperllibs=-lnsl -ldl -lm -lcrypt -lutil -lc -pthread&#39;<br/>config_arg21=&#39;-Ud_csh&#39; config_arg22=&#39;-Duseshrplib&#39; config_arg23=&#39;-Duseithreads&#39;<br/>config_arg24=&#39;-Di_db&#39;<br/>config_arg25=&#39;-Di_ndbm&#39;<br/>config_arg26=&#39;-Di_gdbm&#39;<br/>config_arg3=&#39;-Darchname=i386-linux&#39;<br/>config_arg4=&#39;-Dcc=gcc&#39;<br/>config_arg5=&#39;-Doptimize=-O2 -g -pipe -Wformat -Werror=format-security<br/>-Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4<br/>-fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables<br/>-Wl,--as-needed -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags<br/>-pthread&#39; config_arg6=&#39;-DDEBUGGING=-g&#39; config_arg7=&#39;-Dprefix=/usr&#39;<br/>config_arg8=&#39;-Dvendorprefix=/usr&#39; config_arg9=&#39;-Dsiteprefix=/usr&#39;<br/>config_argc=&#39;26&#39; config_args=&#39;-des -Dinc_version_list=5.16.3<br/>5.16.3/i386-linux-thread-multi 5.16.2 5.16.2/i386-linux-thread-multi 5.16.1<br/>5.16.1/i386-linux-thread-multi 5.16.0 5.16.0/i386-linux-thread-multi 5.14.2<br/>5.14.1 5.14.0 5.12.3 5.12.2 5.12.1 5.12.0 -Darchname=i386-linux -Dcc=gcc<br/>-Doptimize=-O2 -g -pipe -Wformat -Werror=format-security<br/>-Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4<br/>-fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables<br/>-Wl,--as-needed -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags<br/>-pthread -DDEBUGGING=-g -Dprefix=/usr -Dvendorprefix=/usr -Dsiteprefix=/usr<br/>-Dsitebin=/usr/local/bin -Dsiteman1dir=/usr/local/share/man/man1<br/>-Dsiteman3dir=/usr/local/share/man/man3 -Dman3dir=/usr/share/man/man3pm<br/>-Dvendorman3dir=/usr/share/man/man3 -Dman3ext=3pm -Dcf_by=Mageia<br/>-Dmyhostname=localhost -Dperladmin=root@localhost -Dcf_email=root@localhost<br/>-Dperllibs=-lnsl -ldl -lm -lcrypt -lutil -lc -pthread -Ud_csh -Duseshrplib<br/>-Duseithreads -Di_db -Di_ndbm -Di_gdbm&#39; contains=&#39;grep&#39; cp=&#39;cp&#39; cpio=&#39;&#39;<br/>cpp=&#39;cpp&#39; cpp_stuff=&#39;42&#39; cppccsymbols=&#39;&#39; cppflags=&#39;-D_REENTRANT -D_GNU_SOURCE<br/>-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include&#39; cpplast=&#39;-&#39;<br/>cppminus=&#39;-&#39; cpprun=&#39;gcc -E&#39; cppstdin=&#39;gcc -E&#39; cppsymbols=&#39;_FILE_OFFSET_BITS=64<br/>_GNU_SOURCE=1 _LARGEFILE64_SOURCE=1 _LARGEFILE_SOURCE=1 _POSIX_C_SOURCE=200809L<br/>_POSIX_SOURCE=1 _REENTRANT=1 _XOPEN_SOURCE=700 _XOPEN_SOURCE_EXTENDED=1<br/>__ATOMIC_ACQUIRE=2 __ATOMIC_ACQ_REL=4 __ATOMIC_CONSUME=1 __ATOMIC_RELAXED=0<br/>__ATOMIC_RELEASE=3 __ATOMIC_SEQ_CST=5 __BIGGEST_ALIGNMENT__=16<br/>__BYTE_ORDER__=1234 __CHAR16_TYPE__=short\ unsigned\ int<br/>__CHAR32_TYPE__=unsigned\ int __CHAR_BIT__=8 __DBL_DECIMAL_DIG__=17<br/>__DBL_DENORM_MIN__=((double)4.94065645841246544177e-324L) __DBL_DIG__=15<br/>__DBL_EPSILON__=((double)2.22044604925031308085e-16L) __DBL_HAS_DENORM__=1<br/>__DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_MANT_DIG__=53<br/>__DBL_MAX_10_EXP__=308 __DBL_MAX_EXP__=1024<br/>__DBL_MAX__=((double)1.79769313486231570815e+308L) __DBL_MIN_10_EXP__=(-307)<br/>__DBL_MIN_EXP__=(-1021) __DBL_MIN__=((double)2.22507385850720138309e-308L)<br/>__DEC128_EPSILON__=1E-33DL __DEC128_MANT_DIG__=34 __DEC128_MAX_EXP__=6145<br/>__DEC128_MAX__=9.999999999999999999999999999999999E6144DL<br/>__DEC128_MIN_EXP__=(-6142) __DEC128_MIN__=1E-6143DL<br/>__DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL<br/>__DEC32_EPSILON__=1E-6DF __DEC32_MANT_DIG__=7 __DEC32_MAX_EXP__=97<br/>__DEC32_MAX__=9.999999E96DF __DEC32_MIN_EXP__=(-94) __DEC32_MIN__=1E-95DF<br/>__DEC32_SUBNORMAL_MIN__=0.000001E-95DF __DEC64_EPSILON__=1E-15DD<br/>__DEC64_MANT_DIG__=16 __DEC64_MAX_EXP__=385<br/>__DEC64_MAX__=9.999999999999999E384DD __DEC64_MIN_EXP__=(-382)<br/>__DEC64_MIN__=1E-383DD __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD<br/>__DECIMAL_BID_FORMAT__=1 __DECIMAL_DIG__=21 __DEC_EVAL_METHOD__=2 __ELF__=1<br/>__FINITE_MATH_ONLY__=0 __FLOAT_WORD_ORDER__=1234 __FLT_DECIMAL_DIG__=9<br/>__FLT_DENORM_MIN__=1.40129846432481707092e-45F __FLT_DIG__=6<br/>__FLT_EPSILON__=1.19209289550781250000e-7F __FLT_EVAL_METHOD__=2<br/>__FLT_HAS_DENORM__=1 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1<br/>__FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX_EXP__=128<br/>__FLT_MAX__=3.40282346638528859812e+38F __FLT_MIN_10_EXP__=(-37)<br/>__FLT_MIN_EXP__=(-125) __FLT_MIN__=1.17549435082228750797e-38F __FLT_RADIX__=2<br/>__GCC_ATOMIC_BOOL_LOCK_FREE=2 __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2<br/>__GCC_ATOMIC_CHAR32_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR_LOCK_FREE=2<br/>__GCC_ATOMIC_INT_LOCK_FREE=2 __GCC_ATOMIC_LLONG_LOCK_FREE=2<br/>__GCC_ATOMIC_LONG_LOCK_FREE=2 __GCC_ATOMIC_POINTER_LOCK_FREE=2<br/>__GCC_ATOMIC_SHORT_LOCK_FREE=2 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1<br/>__GCC_ATOMIC_WCHAR_T_LOCK_FREE=2 __GCC_HAVE_DWARF2_CFI_ASM=1<br/>__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1<br/>__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1<br/>__GLIBC_MINOR__=17 __GLIBC__=2 __GNUC_GNU_INLINE__=1 __GNUC_MINOR__=7<br/>__GNUC_PATCHLEVEL__=2 __GNUC__=4 __GNU_LIBRARY__=6 __GXX_ABI_VERSION=1002<br/>__INT16_C(c)=c __INT16_MAX__=32767 __INT16_TYPE__=short\ int __INT32_C(c)=c<br/>__INT32_MAX__=2147483647 __INT32_TYPE__=int __INT64_C(c)=cLL<br/>__INT64_MAX__=9223372036854775807LL __INT64_TYPE__=long\ long\ int<br/>__INT8_C(c)=c __INT8_MAX__=127 __INT8_TYPE__=signed\ char __INTMAX_C(c)=cLL<br/>__INTMAX_MAX__=9223372036854775807LL __INTMAX_TYPE__=long\ long\ int<br/>__INTPTR_MAX__=2147483647 __INTPTR_TYPE__=int __INT_FAST16_MAX__=2147483647<br/>__INT_FAST16_TYPE__=int __INT_FAST32_MAX__=2147483647 __INT_FAST32_TYPE__=int<br/>__INT_FAST64_MAX__=9223372036854775807LL __INT_FAST64_TYPE__=long\ long\ int<br/>__INT_FAST8_MAX__=127 __INT_FAST8_TYPE__=signed\ char __INT_LEAST16_MAX__=32767<br/>__INT_LEAST16_TYPE__=short\ int __INT_LEAST32_MAX__=2147483647<br/>__INT_LEAST32_TYPE__=int __INT_LEAST64_MAX__=9223372036854775807LL<br/>__INT_LEAST64_TYPE__=long\ long\ int __INT_LEAST8_MAX__=127<br/>__INT_LEAST8_TYPE__=signed\ char __INT_MAX__=2147483647<br/>__LDBL_DENORM_MIN__=3.64519953188247460253e-4951L __LDBL_DIG__=18<br/>__LDBL_EPSILON__=1.08420217248550443401e-19L __LDBL_HAS_DENORM__=1<br/>__LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_MANT_DIG__=64<br/>__LDBL_MAX_10_EXP__=4932 __LDBL_MAX_EXP__=16384<br/>__LDBL_MAX__=1.18973149535723176502e+4932L __LDBL_MIN_10_EXP__=(-4931)<br/>__LDBL_MIN_EXP__=(-16381) __LDBL_MIN__=3.36210314311209350626e-4932L<br/>__LONG_LONG_MAX__=9223372036854775807LL __LONG_MAX__=2147483647L<br/>__ORDER_BIG_ENDIAN__=4321 __ORDER_LITTLE_ENDIAN__=1234<br/>__ORDER_PDP_ENDIAN__=3412 __PRAGMA_REDEFINE_EXTNAME=1<br/>__PTRDIFF_MAX__=2147483647 __PTRDIFF_TYPE__=int __REGISTER_PREFIX__=<br/>__SCHAR_MAX__=127 __SHRT_MAX__=32767 __SIG_ATOMIC_MAX__=2147483647<br/>__SIG_ATOMIC_MIN__=(-2147483647\ -\ 1) __SIG_ATOMIC_TYPE__=int<br/>__SIZEOF_DOUBLE__=8 __SIZEOF_FLOAT__=4 __SIZEOF_INT__=4<br/>__SIZEOF_LONG_DOUBLE__=12 __SIZEOF_LONG_LONG__=8 __SIZEOF_LONG__=4<br/>__SIZEOF_POINTER__=4 __SIZEOF_PTRDIFF_T__=4 __SIZEOF_SHORT__=2<br/>__SIZEOF_SIZE_T__=4 __SIZEOF_WCHAR_T__=4 __SIZEOF_WINT_T__=4<br/>__SIZE_MAX__=4294967295U __SIZE_TYPE__=unsigned\ int __STDC_HOSTED__=1<br/>__STDC__=1 __UINT16_C(c)=c __UINT16_MAX__=65535 __UINT16_TYPE__=short\<br/>unsigned\ int __UINT32_C(c)=cU __UINT32_MAX__=4294967295U<br/>__UINT32_TYPE__=unsigned\ int __UINT64_C(c)=cULL<br/>__UINT64_MAX__=18446744073709551615ULL __UINT64_TYPE__=long\ long\ unsigned\<br/>int __UINT8_C(c)=c __UINT8_MAX__=255 __UINT8_TYPE__=unsigned\ char<br/>__UINTMAX_C(c)=cULL __UINTMAX_MAX__=18446744073709551615ULL<br/>__UINTMAX_TYPE__=long\ long\ unsigned\ int __UINTPTR_MAX__=4294967295U<br/>__UINTPTR_TYPE__=unsigned\ int __UINT_FAST16_MAX__=4294967295U<br/>__UINT_FAST16_TYPE__=unsigned\ int __UINT_FAST32_MAX__=4294967295U<br/>__UINT_FAST32_TYPE__=unsigned\ int __UINT_FAST64_MAX__=18446744073709551615ULL<br/>__UINT_FAST64_TYPE__=long\ long\ unsigned\ int __UINT_FAST8_MAX__=255<br/>__UINT_FAST8_TYPE__=unsigned\ char __UINT_LEAST16_MAX__=65535<br/>__UINT_LEAST16_TYPE__=short\ unsigned\ int __UINT_LEAST32_MAX__=4294967295U<br/>__UINT_LEAST32_TYPE__=unsigned\ int<br/>__UINT_LEAST64_MAX__=18446744073709551615ULL __UINT_LEAST64_TYPE__=long\ long\<br/>unsigned\ int __UINT_LEAST8_MAX__=255 __UINT_LEAST8_TYPE__=unsigned\ char<br/>__USER_LABEL_PREFIX__= __USE_BSD=1 __USE_FILE_OFFSET64=1 __USE_GNU=1<br/>__USE_LARGEFILE64=1 __USE_LARGEFILE=1 __USE_MISC=1 __USE_POSIX199309=1<br/>__USE_POSIX199506=1 __USE_POSIX2=1 __USE_POSIX=1 __USE_REENTRANT=1 __USE_SVID=1<br/>__USE_UNIX98=1 __USE_XOPEN=1 __USE_XOPEN_EXTENDED=1 __VERSION__=&quot;4.7.2&quot;<br/>__WCHAR_MAX__=2147483647L __WCHAR_MIN__=(-2147483647L\ -\ 1)<br/>__WCHAR_TYPE__=long\ int __WINT_MAX__=4294967295U __WINT_MIN__=0U<br/>__WINT_TYPE__=unsigned\ int __gnu_linux__=1 __i386=1 __i386__=1 __i586=1<br/>__i586__=1 __linux=1 __linux__=1 __pentium=1 __pentium__=1 __unix=1 __unix__=1<br/>i386=1 linux=1 unix=1&#39; crypt_r_proto=&#39;REENTRANT_PROTO_B_CCS&#39; cryptlib=&#39;&#39;<br/>csh=&#39;csh&#39; ctermid_r_proto=&#39;0&#39; ctime_r_proto=&#39;REENTRANT_PROTO_B_SB&#39;<br/>d_Gconvert=&#39;gcvt((x),(n),(b))&#39; d_PRIEUldbl=&#39;define&#39; d_PRIFUldbl=&#39;define&#39;<br/>d_PRIGUldbl=&#39;define&#39; d_PRIXU64=&#39;define&#39; d_PRId64=&#39;define&#39; d_PRIeldbl=&#39;define&#39;<br/>d_PRIfldbl=&#39;define&#39; d_PRIgldbl=&#39;define&#39; d_PRIi64=&#39;define&#39; d_PRIo64=&#39;define&#39;<br/>d_PRIu64=&#39;define&#39; d_PRIx64=&#39;define&#39; d_SCNfldbl=&#39;define&#39; d__fwalk=&#39;&#39;<br/>d_access=&#39;define&#39; d_accessx=&#39;&#39; d_aintl=&#39;&#39; d_alarm=&#39;define&#39; d_archlib=&#39;define&#39;<br/>d_asctime64=&#39;&#39; d_asctime_r=&#39;define&#39; d_atolf=&#39;&#39; d_atoll=&#39;define&#39;<br/>d_attribute_deprecated=&#39;define&#39; d_attribute_format=&#39;define&#39;<br/>d_attribute_malloc=&#39;define&#39; d_attribute_nonnull=&#39;define&#39;<br/>d_attribute_noreturn=&#39;define&#39; d_attribute_pure=&#39;define&#39;<br/>d_attribute_unused=&#39;define&#39; d_attribute_warn_unused_result=&#39;define&#39;<br/>d_bcmp=&#39;define&#39; d_bcopy=&#39;define&#39; d_bsd=&#39;&#39; d_bsdgetpgrp=&#39;&#39; d_bsdsetpgrp=&#39;&#39;<br/>d_builtin_choose_expr=&#39;define&#39; d_builtin_expect=&#39;define&#39; d_bzero=&#39;define&#39;<br/>d_c99_variadic_macros=&#39;define&#39; d_casti32=&#39;&#39; d_castneg=&#39;define&#39; d_charvspr=&#39;&#39;<br/>d_chown=&#39;define&#39; d_chroot=&#39;define&#39; d_chsize=&#39;&#39; d_class=&#39;&#39; d_clearenv=&#39;define&#39;<br/>d_closedir=&#39;define&#39; d_cmsghdr_s=&#39;define&#39; d_const=&#39;define&#39; d_copysignl=&#39;define&#39;<br/>d_cplusplus=&#39;&#39; d_crypt=&#39;define&#39; d_crypt_r=&#39;define&#39; d_csh=&#39;&#39; d_ctermid=&#39;define&#39;<br/>d_ctermid_r=&#39;&#39; d_ctime64=&#39;&#39; d_ctime_r=&#39;define&#39; d_cuserid=&#39;define&#39;<br/>d_dbl_dig=&#39;define&#39; d_dbminitproto=&#39;define&#39; d_difftime=&#39;define&#39; d_difftime64=&#39;&#39;<br/>d_dir_dd_fd=&#39;&#39; d_dirfd=&#39;define&#39; d_dirnamlen=&#39;&#39; d_dlerror=&#39;define&#39;<br/>d_dlopen=&#39;define&#39; d_dlsymun=&#39;&#39; d_dosuid=&#39;&#39; d_drand48_r=&#39;define&#39;<br/>d_drand48proto=&#39;define&#39; d_dup2=&#39;define&#39; d_eaccess=&#39;define&#39; d_endgrent=&#39;define&#39;<br/>d_endgrent_r=&#39;&#39; d_endhent=&#39;define&#39; d_endhostent_r=&#39;&#39; d_endnent=&#39;define&#39;<br/>d_endnetent_r=&#39;&#39; d_endpent=&#39;define&#39; d_endprotoent_r=&#39;&#39; d_endpwent=&#39;define&#39;<br/>d_endpwent_r=&#39;&#39; d_endsent=&#39;define&#39; d_endservent_r=&#39;&#39; d_eofnblk=&#39;define&#39;<br/>d_eunice=&#39;&#39; d_faststdio=&#39;define&#39; d_fchdir=&#39;define&#39; d_fchmod=&#39;define&#39;<br/>d_fchown=&#39;define&#39; d_fcntl=&#39;define&#39; d_fcntl_can_lock=&#39;define&#39;<br/>d_fd_macros=&#39;define&#39; d_fd_set=&#39;define&#39; d_fds_bits=&#39;define&#39; d_fgetpos=&#39;define&#39;<br/>d_finite=&#39;define&#39; d_finitel=&#39;define&#39; d_flexfnam=&#39;define&#39; d_flock=&#39;define&#39;<br/>d_flockproto=&#39;define&#39; d_fork=&#39;define&#39; d_fp_class=&#39;&#39; d_fpathconf=&#39;define&#39;<br/>d_fpclass=&#39;&#39; d_fpclassify=&#39;&#39; d_fpclassl=&#39;&#39; d_fpos64_t=&#39;&#39; d_frexpl=&#39;define&#39;<br/>d_fs_data_s=&#39;&#39; d_fseeko=&#39;define&#39; d_fsetpos=&#39;define&#39; d_fstatfs=&#39;define&#39;<br/>d_fstatvfs=&#39;define&#39; d_fsync=&#39;define&#39; d_ftello=&#39;define&#39; d_ftime=&#39;&#39;<br/>d_futimes=&#39;define&#39; d_gdbm_ndbm_h_uses_prototypes=&#39;&#39;<br/>d_gdbmndbm_h_uses_prototypes=&#39;define&#39; d_getaddrinfo=&#39;define&#39; d_getcwd=&#39;define&#39;<br/>d_getespwnam=&#39;&#39; d_getfsstat=&#39;&#39; d_getgrent=&#39;define&#39; d_getgrent_r=&#39;define&#39;<br/>d_getgrgid_r=&#39;define&#39;<br/>d_getgrnam_r=&#39;define&#39;<br/>d_getgrps=&#39;define&#39;<br/>d_gethbyaddr=&#39;define&#39;<br/>d_gethbyname=&#39;define&#39;<br/>d_gethent=&#39;define&#39;<br/>d_gethname=&#39;define&#39;<br/>d_gethostbyaddr_r=&#39;define&#39;<br/>d_gethostbyname_r=&#39;define&#39;<br/>d_gethostent_r=&#39;define&#39;<br/>d_gethostprotos=&#39;define&#39;<br/>d_getitimer=&#39;define&#39;<br/>d_getlogin=&#39;define&#39;<br/>d_getlogin_r=&#39;define&#39;<br/>d_getmnt=&#39;&#39;<br/>d_getmntent=&#39;define&#39;<br/>d_getnameinfo=&#39;define&#39;<br/>d_getnbyaddr=&#39;define&#39;<br/>d_getnbyname=&#39;define&#39;<br/>d_getnent=&#39;define&#39;<br/>d_getnetbyaddr_r=&#39;define&#39;<br/>d_getnetbyname_r=&#39;define&#39;<br/>d_getnetent_r=&#39;define&#39;<br/>d_getnetprotos=&#39;define&#39;<br/>d_getpagsz=&#39;define&#39;<br/>d_getpbyname=&#39;define&#39;<br/>d_getpbynumber=&#39;define&#39;<br/>d_getpent=&#39;define&#39;<br/>d_getpgid=&#39;define&#39;<br/>d_getpgrp=&#39;define&#39;<br/>d_getpgrp2=&#39;&#39;<br/>d_getppid=&#39;define&#39;<br/>d_getprior=&#39;define&#39;<br/>d_getprotobyname_r=&#39;define&#39;<br/>d_getprotobynumber_r=&#39;define&#39;<br/>d_getprotoent_r=&#39;define&#39;<br/>d_getprotoprotos=&#39;define&#39;<br/>d_getprpwnam=&#39;&#39;<br/>d_getpwent=&#39;define&#39;<br/>d_getpwent_r=&#39;define&#39;<br/>d_getpwnam_r=&#39;define&#39;<br/>d_getpwuid_r=&#39;define&#39;<br/>d_getsbyname=&#39;define&#39;<br/>d_getsbyport=&#39;define&#39;<br/>d_getsent=&#39;define&#39;<br/>d_getservbyname_r=&#39;define&#39;<br/>d_getservbyport_r=&#39;define&#39;<br/>d_getservent_r=&#39;define&#39;<br/>d_getservprotos=&#39;define&#39;<br/>d_getspnam=&#39;define&#39;<br/>d_getspnam_r=&#39;define&#39;<br/>d_gettimeod=&#39;define&#39;<br/>d_gmtime64=&#39;&#39;<br/>d_gmtime_r=&#39;define&#39;<br/>d_gnulibc=&#39;define&#39;<br/>d_grpasswd=&#39;define&#39;<br/>d_hasmntopt=&#39;define&#39;<br/>d_htonl=&#39;define&#39;<br/>d_ilogbl=&#39;define&#39;<br/>d_inc_version_list=&#39;define&#39;<br/>d_index=&#39;&#39;<br/>d_inetaton=&#39;define&#39;<br/>d_inetntop=&#39;define&#39;<br/>d_inetpton=&#39;define&#39;<br/>d_int64_t=&#39;define&#39;<br/>d_ipv6_mreq=&#39;define&#39;<br/>d_isascii=&#39;define&#39;<br/>d_isblank=&#39;define&#39;<br/>d_isfinite=&#39;&#39;<br/>d_isinf=&#39;define&#39;<br/>d_isnan=&#39;define&#39;<br/>d_isnanl=&#39;define&#39;<br/>d_killpg=&#39;define&#39;<br/>d_lchown=&#39;define&#39;<br/>d_ldbl_dig=&#39;define&#39;<br/>d_libm_lib_version=&#39;define&#39;<br/>d_link=&#39;define&#39;<br/>d_localtime64=&#39;&#39;<br/>d_localtime_r=&#39;define&#39;<br/>d_localtime_r_needs_tzset=&#39;define&#39;<br/>d_locconv=&#39;define&#39;<br/>d_lockf=&#39;define&#39;<br/>d_longdbl=&#39;define&#39;<br/>d_longlong=&#39;define&#39;<br/>d_lseekproto=&#39;define&#39;<br/>d_lstat=&#39;define&#39;<br/>d_madvise=&#39;define&#39;<br/>d_malloc_good_size=&#39;&#39;<br/>d_malloc_size=&#39;&#39;<br/>d_mblen=&#39;define&#39;<br/>d_mbstowcs=&#39;define&#39;<br/>d_mbtowc=&#39;define&#39;<br/>d_memchr=&#39;define&#39;<br/>d_memcmp=&#39;define&#39;<br/>d_memcpy=&#39;define&#39;<br/>d_memmove=&#39;define&#39;<br/>d_memset=&#39;define&#39;<br/>d_mkdir=&#39;define&#39;<br/>d_mkdtemp=&#39;define&#39;<br/>d_mkfifo=&#39;define&#39;<br/>d_mkstemp=&#39;define&#39;<br/>d_mkstemps=&#39;define&#39;<br/>d_mktime=&#39;define&#39;<br/>d_mktime64=&#39;&#39;<br/>d_mmap=&#39;define&#39;<br/>d_modfl=&#39;define&#39;<br/>d_modfl_pow32_bug=&#39;&#39;<br/>d_modflproto=&#39;define&#39;<br/>d_mprotect=&#39;define&#39;<br/>d_msg=&#39;define&#39;<br/>d_msg_ctrunc=&#39;define&#39;<br/>d_msg_dontroute=&#39;define&#39;<br/>d_msg_oob=&#39;define&#39;<br/>d_msg_peek=&#39;define&#39;<br/>d_msg_proxy=&#39;define&#39;<br/>d_msgctl=&#39;define&#39;<br/>d_msgget=&#39;define&#39;<br/>d_msghdr_s=&#39;define&#39;<br/>d_msgrcv=&#39;define&#39;<br/>d_msgsnd=&#39;define&#39;<br/>d_msync=&#39;define&#39;<br/>d_munmap=&#39;define&#39;<br/>d_mymalloc=&#39;&#39;<br/>d_ndbm=&#39;define&#39;<br/>d_ndbm_h_uses_prototypes=&#39;define&#39;<br/>d_nice=&#39;define&#39;<br/>d_nl_langinfo=&#39;define&#39;<br/>d_nv_preserves_uv=&#39;define&#39;<br/>d_nv_zero_is_allbits_zero=&#39;define&#39;<br/>d_off64_t=&#39;define&#39;<br/>d_old_pthread_create_joinable=&#39;&#39;<br/>d_oldpthreads=&#39;&#39;<br/>d_oldsock=&#39;&#39;<br/>d_open3=&#39;define&#39;<br/>d_pathconf=&#39;define&#39;<br/>d_pause=&#39;define&#39;<br/>d_perl_otherlibdirs=&#39;&#39;<br/>d_phostname=&#39;&#39;<br/>d_pipe=&#39;define&#39;<br/>d_poll=&#39;define&#39;<br/>d_portable=&#39;define&#39;<br/>d_prctl=&#39;define&#39;<br/>d_prctl_set_name=&#39;define&#39;<br/>d_printf_format_null=&#39;define&#39;<br/>d_procselfexe=&#39;define&#39;<br/>d_pseudofork=&#39;&#39;<br/>d_pthread_atfork=&#39;define&#39;<br/>d_pthread_attr_setscope=&#39;define&#39;<br/>d_pthread_yield=&#39;define&#39;<br/>d_pwage=&#39;&#39;<br/>d_pwchange=&#39;&#39;<br/>d_pwclass=&#39;&#39;<br/>d_pwcomment=&#39;&#39;<br/>d_pwexpire=&#39;&#39;<br/>d_pwgecos=&#39;define&#39;<br/>d_pwpasswd=&#39;define&#39;<br/>d_pwquota=&#39;&#39;<br/>d_qgcvt=&#39;define&#39;<br/>d_quad=&#39;define&#39;<br/>d_random_r=&#39;define&#39;<br/>d_readdir=&#39;define&#39;<br/>d_readdir64_r=&#39;define&#39;<br/>d_readdir_r=&#39;define&#39;<br/>d_readlink=&#39;define&#39;<br/>d_readv=&#39;define&#39;<br/>d_recvmsg=&#39;define&#39;<br/>d_rename=&#39;define&#39;<br/>d_rewinddir=&#39;define&#39;<br/>d_rmdir=&#39;define&#39;<br/>d_safebcpy=&#39;&#39;<br/>d_safemcpy=&#39;&#39;<br/>d_sanemcmp=&#39;define&#39;<br/>d_sbrkproto=&#39;define&#39;<br/>d_scalbnl=&#39;define&#39;<br/>d_sched_yield=&#39;define&#39;<br/>d_scm_rights=&#39;define&#39;<br/>d_seekdir=&#39;define&#39;<br/>d_select=&#39;define&#39;<br/>d_sem=&#39;define&#39;<br/>d_semctl=&#39;define&#39;<br/>d_semctl_semid_ds=&#39;define&#39;<br/>d_semctl_semun=&#39;define&#39;<br/>d_semget=&#39;define&#39;<br/>d_semop=&#39;define&#39;<br/>d_sendmsg=&#39;define&#39;<br/>d_setegid=&#39;define&#39;<br/>d_seteuid=&#39;define&#39;<br/>d_setgrent=&#39;define&#39;<br/>d_setgrent_r=&#39;&#39;<br/>d_setgrps=&#39;define&#39;<br/>d_sethent=&#39;define&#39;<br/>d_sethostent_r=&#39;&#39;<br/>d_setitimer=&#39;define&#39;<br/>d_setlinebuf=&#39;define&#39;<br/>d_setlocale=&#39;define&#39;<br/>d_setlocale_r=&#39;&#39;<br/>d_setnent=&#39;define&#39;<br/>d_setnetent_r=&#39;&#39;<br/>d_setpent=&#39;define&#39;<br/>d_setpgid=&#39;define&#39;<br/>d_setpgrp=&#39;define&#39;<br/>d_setpgrp2=&#39;&#39;<br/>d_setprior=&#39;define&#39;<br/>d_setproctitle=&#39;&#39;<br/>d_setprotoent_r=&#39;&#39;<br/>d_setpwent=&#39;define&#39;<br/>d_setpwent_r=&#39;&#39;<br/>d_setregid=&#39;define&#39;<br/>d_setresgid=&#39;define&#39;<br/>d_setresuid=&#39;define&#39;<br/>d_setreuid=&#39;define&#39;<br/>d_setrgid=&#39;&#39;<br/>d_setruid=&#39;&#39;<br/>d_setsent=&#39;define&#39;<br/>d_setservent_r=&#39;&#39;<br/>d_setsid=&#39;define&#39;<br/>d_setvbuf=&#39;define&#39;<br/>d_sfio=&#39;&#39;<br/>d_shm=&#39;define&#39;<br/>d_shmat=&#39;define&#39;<br/>d_shmatprototype=&#39;define&#39;<br/>d_shmctl=&#39;define&#39;<br/>d_shmdt=&#39;define&#39;<br/>d_shmget=&#39;define&#39;<br/>d_sigaction=&#39;define&#39;<br/>d_signbit=&#39;define&#39;<br/>d_sigprocmask=&#39;define&#39;<br/>d_sigsetjmp=&#39;define&#39;<br/>d_sin6_scope_id=&#39;define&#39;<br/>d_sitearch=&#39;define&#39;<br/>d_snprintf=&#39;define&#39;<br/>d_sockaddr_in6=&#39;define&#39;<br/>d_sockaddr_sa_len=&#39;&#39;<br/>d_sockatmark=&#39;define&#39;<br/>d_sockatmarkproto=&#39;define&#39;<br/>d_socket=&#39;define&#39;<br/>d_socklen_t=&#39;define&#39;<br/>d_sockpair=&#39;define&#39;<br/>d_socks5_init=&#39;&#39;<br/>d_sprintf_returns_strlen=&#39;define&#39;<br/>d_sqrtl=&#39;define&#39;<br/>d_srand48_r=&#39;define&#39;<br/>d_srandom_r=&#39;define&#39;<br/>d_sresgproto=&#39;define&#39;<br/>d_sresuproto=&#39;define&#39;<br/>d_statblks=&#39;define&#39;<br/>d_statfs_f_flags=&#39;define&#39;<br/>d_statfs_s=&#39;define&#39;<br/>d_static_inline=&#39;define&#39;<br/>d_statvfs=&#39;define&#39;<br/>d_stdio_cnt_lval=&#39;&#39;<br/>d_stdio_ptr_lval=&#39;define&#39;<br/>d_stdio_ptr_lval_nochange_cnt=&#39;&#39;<br/>d_stdio_ptr_lval_sets_cnt=&#39;define&#39;<br/>d_stdio_stream_array=&#39;&#39;<br/>d_stdiobase=&#39;define&#39;<br/>d_stdstdio=&#39;define&#39;<br/>d_strchr=&#39;define&#39;<br/>d_strcoll=&#39;define&#39;<br/>d_strctcpy=&#39;define&#39;<br/>d_strerrm=&#39;strerror(e)&#39;<br/>d_strerror=&#39;define&#39;<br/>d_strerror_r=&#39;define&#39;<br/>d_strftime=&#39;define&#39;<br/>d_strlcat=&#39;&#39;<br/>d_strlcpy=&#39;&#39;<br/>d_strtod=&#39;define&#39;<br/>d_strtol=&#39;define&#39;<br/>d_strtold=&#39;define&#39;<br/>d_strtoll=&#39;define&#39;<br/>d_strtoq=&#39;define&#39;<br/>d_strtoul=&#39;define&#39;<br/>d_strtoull=&#39;define&#39;<br/>d_strtouq=&#39;define&#39;<br/>d_strxfrm=&#39;define&#39;<br/>d_suidsafe=&#39;&#39;<br/>d_symlink=&#39;define&#39;<br/>d_syscall=&#39;define&#39;<br/>d_syscallproto=&#39;define&#39;<br/>d_sysconf=&#39;define&#39;<br/>d_sysernlst=&#39;&#39;<br/>d_syserrlst=&#39;define&#39;<br/>d_system=&#39;define&#39;<br/>d_tcgetpgrp=&#39;define&#39;<br/>d_tcsetpgrp=&#39;define&#39;<br/>d_telldir=&#39;define&#39;<br/>d_telldirproto=&#39;define&#39;<br/>d_time=&#39;define&#39;<br/>d_timegm=&#39;define&#39;<br/>d_times=&#39;define&#39;<br/>d_tm_tm_gmtoff=&#39;define&#39;<br/>d_tm_tm_zone=&#39;define&#39;<br/>d_tmpnam_r=&#39;define&#39;<br/>d_truncate=&#39;define&#39;<br/>d_ttyname_r=&#39;define&#39;<br/>d_tzname=&#39;define&#39;<br/>d_u32align=&#39;&#39;<br/>d_ualarm=&#39;define&#39;<br/>d_umask=&#39;define&#39;<br/>d_uname=&#39;define&#39;<br/>d_union_semun=&#39;&#39;<br/>d_unordered=&#39;&#39;<br/>d_unsetenv=&#39;define&#39;<br/>d_usleep=&#39;define&#39;<br/>d_usleepproto=&#39;define&#39;<br/>d_ustat=&#39;define&#39;<br/>d_vendorarch=&#39;define&#39;<br/>d_vendorbin=&#39;define&#39;<br/>d_vendorlib=&#39;define&#39;<br/>d_vendorscript=&#39;define&#39;<br/>d_vfork=&#39;&#39;<br/>d_void_closedir=&#39;&#39;<br/>d_voidsig=&#39;define&#39;<br/>d_voidtty=&#39;&#39;<br/>d_volatile=&#39;define&#39;<br/>d_vprintf=&#39;define&#39;<br/>d_vsnprintf=&#39;define&#39;<br/>d_wait4=&#39;define&#39;<br/>d_waitpid=&#39;define&#39;<br/>d_wcstombs=&#39;define&#39;<br/>d_wctomb=&#39;define&#39;<br/>d_writev=&#39;define&#39;<br/>d_xenix=&#39;&#39;<br/>date=&#39;date&#39;<br/>db_hashtype=&#39;u_int32_t&#39;<br/>db_prefixtype=&#39;size_t&#39;<br/>db_version_major=&#39;5&#39;<br/>db_version_minor=&#39;3&#39;<br/>db_version_patch=&#39;21&#39;<br/>defvoidused=&#39;15&#39;<br/>direntrytype=&#39;struct dirent&#39;<br/>dlext=&#39;so&#39;<br/>dlsrc=&#39;dl_dlopen.xs&#39;<br/>doublesize=&#39;8&#39;<br/>drand01=&#39;drand48()&#39;<br/>drand48_r_proto=&#39;REENTRANT_PROTO_I_ST&#39;<br/>dtrace=&#39;&#39;<br/>dynamic_ext=&#39;B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper<br/>Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob<br/>Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO<br/>IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode<br/>POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket<br/>Storable Sys/Hostname Sys/Syslog Text/Soundex Tie/Hash/NamedCapture Time/HiRes<br/>Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase<br/>attributes mro re threads threads/shared&#39; eagain=&#39;EAGAIN&#39; ebcdic=&#39;&#39; echo=&#39;echo&#39;<br/>egrep=&#39;egrep&#39; emacs=&#39;&#39; endgrent_r_proto=&#39;0&#39; endhostent_r_proto=&#39;0&#39;<br/>endnetent_r_proto=&#39;0&#39; endprotoent_r_proto=&#39;0&#39;<br/>endpwent_r_proto=&#39;0&#39;<br/>endservent_r_proto=&#39;0&#39;<br/>eunicefix=&#39;:&#39;<br/>exe_ext=&#39;&#39;<br/>expr=&#39;expr&#39;<br/>extensions=&#39;B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper<br/>Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob<br/>Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO<br/>IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode<br/>POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket<br/>Storable Sys/Hostname Sys/Syslog Text/Soundex Tie/Hash/NamedCapture Time/HiRes<br/>Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase<br/>attributes mro re threads threads/shared Archive/Extract Archive/Tar<br/>Attribute/Handlers AutoLoader B/Debug B/Deparse B/Lint CGI CPAN CPAN/Meta<br/>CPAN/Meta/YAML CPANPLUS CPANPLUS/Dist/Build Carp Devel/SelfStubber Digest<br/>Dumpvalue Env Errno ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant<br/>ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/ParseXS<br/>File/CheckTree File/Fetch File/Path File/Temp FileCache Filter/Simple<br/>Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Zlib IPC/Cmd<br/>IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple<br/>Log/Message Log/Message/Simple Math/BigInt Math/BigRat Math/Complex Memoize<br/>Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded<br/>Module/Metadata Module/Pluggable NEXT Net/Ping Object/Accessor<br/>Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType<br/>PerlIO/via/QuotedPrint Pod/Escapes Pod/Functions Pod/Html Pod/LaTeX Pod/Parser<br/>Pod/Perldoc Pod/Simple Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap<br/>Term/Complete Term/ReadLine Term/UI Test Test/Harness Test/Simple Text/Abbrev<br/>Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File<br/>Tie/Memoize Tie/RefHash Time/Local Version/Requirements XSLoader autodie<br/>autouse base bignum constant encoding/warnings if lib libnet parent perlfaq<br/>podlators&#39; extern_C=&#39;extern&#39; extras=&#39;&#39; fflushNULL=&#39;define&#39; fflushall=&#39;&#39; find=&#39;&#39;<br/>firstmakefile=&#39;makefile&#39; flex=&#39;&#39; fpossize=&#39;16&#39; fpostype=&#39;fpos_t&#39;<br/>freetype=&#39;void&#39; from=&#39;:&#39; full_ar=&#39;/usr/bin/ar&#39; full_csh=&#39;csh&#39;<br/>full_sed=&#39;/usr/bin/sed&#39; gccansipedantic=&#39;&#39; gccosandvers=&#39;&#39; gccversion=&#39;4.7.2&#39;<br/>getgrent_r_proto=&#39;REENTRANT_PROTO_I_SBWR&#39;<br/>getgrgid_r_proto=&#39;REENTRANT_PROTO_I_TSBWR&#39;<br/>getgrnam_r_proto=&#39;REENTRANT_PROTO_I_CSBWR&#39;<br/>gethostbyaddr_r_proto=&#39;REENTRANT_PROTO_I_TsISBWRE&#39;<br/>gethostbyname_r_proto=&#39;REENTRANT_PROTO_I_CSBWRE&#39;<br/>gethostent_r_proto=&#39;REENTRANT_PROTO_I_SBWRE&#39;<br/>getlogin_r_proto=&#39;REENTRANT_PROTO_I_BW&#39;<br/>getnetbyaddr_r_proto=&#39;REENTRANT_PROTO_I_uISBWRE&#39;<br/>getnetbyname_r_proto=&#39;REENTRANT_PROTO_I_CSBWRE&#39;<br/>getnetent_r_proto=&#39;REENTRANT_PROTO_I_SBWRE&#39;<br/>getprotobyname_r_proto=&#39;REENTRANT_PROTO_I_CSBWR&#39;<br/>getprotobynumber_r_proto=&#39;REENTRANT_PROTO_I_ISBWR&#39;<br/>getprotoent_r_proto=&#39;REENTRANT_PROTO_I_SBWR&#39;<br/>getpwent_r_proto=&#39;REENTRANT_PROTO_I_SBWR&#39;<br/>getpwnam_r_proto=&#39;REENTRANT_PROTO_I_CSBWR&#39;<br/>getpwuid_r_proto=&#39;REENTRANT_PROTO_I_TSBWR&#39;<br/>getservbyname_r_proto=&#39;REENTRANT_PROTO_I_CCSBWR&#39;<br/>getservbyport_r_proto=&#39;REENTRANT_PROTO_I_ICSBWR&#39;<br/>getservent_r_proto=&#39;REENTRANT_PROTO_I_SBWR&#39;<br/>getspnam_r_proto=&#39;REENTRANT_PROTO_I_CSBWR&#39; gidformat=&#39;&quot;lu&quot;&#39; gidsign=&#39;1&#39;<br/>gidsize=&#39;4&#39; gidtype=&#39;gid_t&#39; git_branch=&#39;&#39; git_commit_id=&#39;&#39;<br/>git_commit_id_title=&#39;&#39; git_describe=&#39;&#39; git_uncommitted_changes=&#39;&#39;<br/>glibpth=&#39;/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib<br/>&#39; gmake=&#39;gmake&#39; gmtime_r_proto=&#39;REENTRANT_PROTO_S_TS&#39; gnulibc_version=&#39;2.17&#39;<br/>grep=&#39;grep&#39; groupcat=&#39;cat /etc/group&#39; groupstype=&#39;gid_t&#39;<br/>gzip=&#39;gzip&#39;<br/>h_fcntl=&#39;false&#39;<br/>h_sysfile=&#39;true&#39;<br/>hint=&#39;recommended&#39;<br/>hostcat=&#39;cat /etc/hosts&#39;<br/>html1dir=&#39; &#39;<br/>html1direxp=&#39;&#39;<br/>html3dir=&#39; &#39;<br/>html3direxp=&#39;&#39;<br/>i16size=&#39;2&#39;<br/>i16type=&#39;short&#39;<br/>i32size=&#39;4&#39;<br/>i32type=&#39;long&#39;<br/>i64size=&#39;8&#39;<br/>i64type=&#39;long long&#39;<br/>i8size=&#39;1&#39;<br/>i8type=&#39;signed char&#39;<br/>i_arpainet=&#39;define&#39;<br/>i_assert=&#39;define&#39;<br/>i_bsdioctl=&#39;&#39;<br/>i_crypt=&#39;define&#39;<br/>i_db=&#39;define&#39;<br/>i_dbm=&#39;define&#39;<br/>i_dirent=&#39;define&#39;<br/>i_dld=&#39;&#39;<br/>i_dlfcn=&#39;define&#39;<br/>i_fcntl=&#39;&#39;<br/>i_float=&#39;define&#39;<br/>i_fp=&#39;&#39;<br/>i_fp_class=&#39;&#39;<br/>i_gdbm=&#39;define&#39;<br/>i_gdbm_ndbm=&#39;&#39;<br/>i_gdbmndbm=&#39;define&#39;<br/>i_grp=&#39;define&#39;<br/>i_ieeefp=&#39;&#39;<br/>i_inttypes=&#39;define&#39;<br/>i_langinfo=&#39;define&#39;<br/>i_libutil=&#39;&#39;<br/>i_limits=&#39;define&#39;<br/>i_locale=&#39;define&#39;<br/>i_machcthr=&#39;&#39;<br/>i_malloc=&#39;define&#39;<br/>i_mallocmalloc=&#39;&#39;<br/>i_math=&#39;define&#39;<br/>i_memory=&#39;&#39;<br/>i_mntent=&#39;define&#39;<br/>i_ndbm=&#39;define&#39;<br/>i_netdb=&#39;define&#39;<br/>i_neterrno=&#39;&#39;<br/>i_netinettcp=&#39;define&#39;<br/>i_niin=&#39;define&#39;<br/>i_poll=&#39;define&#39;<br/>i_prot=&#39;&#39;<br/>i_pthread=&#39;define&#39;<br/>i_pwd=&#39;define&#39;<br/>i_rpcsvcdbm=&#39;&#39;<br/>i_sfio=&#39;&#39;<br/>i_sgtty=&#39;&#39;<br/>i_shadow=&#39;define&#39;<br/>i_socks=&#39;&#39;<br/>i_stdarg=&#39;define&#39;<br/>i_stdbool=&#39;define&#39;<br/>i_stddef=&#39;define&#39;<br/>i_stdlib=&#39;define&#39;<br/>i_string=&#39;define&#39;<br/>i_sunmath=&#39;&#39;<br/>i_sysaccess=&#39;&#39;<br/>i_sysdir=&#39;define&#39;<br/>i_sysfile=&#39;define&#39;<br/>i_sysfilio=&#39;&#39;<br/>i_sysin=&#39;&#39;<br/>i_sysioctl=&#39;define&#39;<br/>i_syslog=&#39;define&#39;<br/>i_sysmman=&#39;define&#39;<br/>i_sysmode=&#39;&#39;<br/>i_sysmount=&#39;define&#39;<br/>i_sysndir=&#39;&#39;<br/>i_sysparam=&#39;define&#39;<br/>i_syspoll=&#39;define&#39;<br/>i_sysresrc=&#39;define&#39;<br/>i_syssecrt=&#39;&#39;<br/>i_sysselct=&#39;define&#39;<br/>i_syssockio=&#39;&#39;<br/>i_sysstat=&#39;define&#39;<br/>i_sysstatfs=&#39;define&#39;<br/>i_sysstatvfs=&#39;define&#39;<br/>i_systime=&#39;define&#39;<br/>i_systimek=&#39;&#39;<br/>i_systimes=&#39;define&#39;<br/>i_systypes=&#39;define&#39;<br/>i_sysuio=&#39;define&#39;<br/>i_sysun=&#39;define&#39;<br/>i_sysutsname=&#39;define&#39;<br/>i_sysvfs=&#39;define&#39;<br/>i_syswait=&#39;define&#39;<br/>i_termio=&#39;&#39;<br/>i_termios=&#39;define&#39;<br/>i_time=&#39;define&#39;<br/>i_unistd=&#39;define&#39;<br/>i_ustat=&#39;define&#39;<br/>i_utime=&#39;define&#39;<br/>i_values=&#39;define&#39;<br/>i_varargs=&#39;&#39;<br/>i_varhdr=&#39;stdarg.h&#39;<br/>i_vfork=&#39;&#39;<br/>ignore_versioned_solibs=&#39;y&#39;<br/>inc_version_list=&#39;5.16.3 5.16.3/i386-linux-thread-multi 5.16.2<br/>5.16.2/i386-linux-thread-multi 5.16.1 5.16.1/i386-linux-thread-multi 5.16.0<br/>5.16.0/i386-linux-thread-multi 5.14.2 5.14.1 5.14.0 5.12.3 5.12.2 5.12.1<br/>5.12.0&#39;<br/>inc_version_list_init=&#39;&quot;5.16.3&quot;,&quot;5.16.3/i386-linux-thread-multi&quot;,&quot;5.16.2&quot;,&quot;5.16.2/i386-linux-thread-multi&quot;,&quot;5.16.1&quot;,&quot;5.16.1/i386-linux-thread-multi&quot;,&quot;5.16.0&quot;,&quot;5.16.0/i386-linux-thread-multi&quot;,&quot;5.14.2&quot;,&quot;5.14.1&quot;,&quot;5.14.0&quot;,&quot;5.12.3&quot;,&quot;5.12.2&quot;,&quot;5.12.1&quot;,&quot;5.12.0&quot;,0&#39;<br/>incpath=&#39;&#39; inews=&#39;&#39; initialinstalllocation=&#39;/usr/bin&#39;<br/>installarchlib=&#39;/usr/lib/perl5/5.16.3/i386-linux-thread-multi&#39;<br/>installbin=&#39;/usr/bin&#39; installhtml1dir=&#39;&#39;<br/>installhtml3dir=&#39;&#39;<br/>installman1dir=&#39;/usr/share/man/man1&#39;<br/>installman3dir=&#39;/usr/share/man/man3pm&#39;<br/>installprefix=&#39;/usr&#39;<br/>installprefixexp=&#39;/usr&#39;<br/>installprivlib=&#39;/usr/lib/perl5/5.16.3&#39;<br/>installscript=&#39;/usr/bin&#39;<br/>installsitearch=&#39;/usr/lib/perl5/site_perl/5.16.3/i386-linux-thread-multi&#39;<br/>installsitebin=&#39;/usr/local/bin&#39;<br/>installsitehtml1dir=&#39;&#39;<br/>installsitehtml3dir=&#39;&#39;<br/>installsitelib=&#39;/usr/lib/perl5/site_perl/5.16.3&#39;<br/>installsiteman1dir=&#39;/usr/local/share/man/man1&#39;<br/>installsiteman3dir=&#39;/usr/local/share/man/man3&#39;<br/>installsitescript=&#39;/usr/local/bin&#39;<br/>installstyle=&#39;lib/perl5&#39;<br/>installusrbinperl=&#39;&#39;<br/>installvendorarch=&#39;/usr/lib/perl5/vendor_perl/5.16.3/i386-linux-thread-multi&#39;<br/>installvendorbin=&#39;/usr/bin&#39;<br/>installvendorhtml1dir=&#39;&#39;<br/>installvendorhtml3dir=&#39;&#39;<br/>installvendorlib=&#39;/usr/lib/perl5/vendor_perl/5.16.3&#39;<br/>installvendorman1dir=&#39;/usr/share/man/man1&#39;<br/>installvendorman3dir=&#39;/usr/share/man/man3&#39;<br/>installvendorscript=&#39;/usr/bin&#39;<br/>intsize=&#39;4&#39;<br/>issymlink=&#39;test -h&#39;<br/>ivdformat=&#39;&quot;ld&quot;&#39;<br/>ivsize=&#39;4&#39;<br/>ivtype=&#39;long&#39;<br/>known_extensions=&#39;B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File<br/>Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl<br/>File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash<br/>I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File<br/>ODBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via<br/>SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex<br/>Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize<br/>VMS/DCLsym VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap<br/>arybase attributes mro re threads threads/shared &#39; ksh=&#39;&#39; ld=&#39;gcc&#39;<br/>ld_can_script=&#39;define&#39; lddlflags=&#39;-shared -O2 -g -pipe -Wformat<br/>-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector<br/>--param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic<br/>-fasynchronous-unwind-tables -Wl,--as-needed -Wl,-z,relro -Wl,-O1<br/>-Wl,--build-id -Wl,--enable-new-dtags -pthread -L/usr/local/lib&#39; ldflags=&#39;<br/>-fstack-protector -L/usr/local/lib&#39; ldflags_nolargefiles=&#39; -fstack-protector<br/>-L/usr/local/lib&#39; ldflags_uselargefiles=&#39;&#39; ldlibpthname=&#39;LD_LIBRARY_PATH&#39;<br/>less=&#39;less&#39; lib=&#39;lib&#39; lib_ext=&#39;.a&#39; libc=&#39;/lib/libc-2.17.so&#39;<br/>libdb_needs_pthread=&#39;N&#39; libperl=&#39;libperl.so&#39;<br/>libpth=&#39;/usr/local/lib /lib /usr/lib&#39; libs=&#39;-lnsl -lgdbm -ldb -ldl -lm -lcrypt<br/>-lutil -lpthread -lc -lgdbm_compat&#39; libs_nolargefiles=&#39;-lnsl -lgdbm -ldb -ldl<br/>-lm -lcrypt -lutil -lpthread -lc -lgdbm_compat&#39; libsdirs=&#39; /lib&#39; libsfiles=&#39;<br/>libnsl.so libgdbm.so libdb.so libdl.so libm.so libcrypt.so libutil.so<br/>libpthread.so libc.so libgdbm_compat.so&#39;<br/>libsfound=&#39; /lib/libnsl.so /lib/libgdbm.so /lib/libdb.so /lib/libdl.so /lib/libm.so /lib/libcrypt.so /lib/libutil.so /lib/libpthread.so /lib/libc.so /lib/libgdbm_compat.so&#39;<br/>libspath=&#39; /usr/local/lib /lib /usr/lib&#39; libswanted=&#39;sfio socket inet nsl nm<br/>ndbm gdbm dbm db malloc dl dld ld sun m crypt sec util pthread c cposix posix<br/>ucb BSD gdbm_compat&#39; libswanted_nolargefiles=&#39;sfio socket inet nsl nm ndbm gdbm<br/>dbm db malloc dl dld ld sun m crypt sec util pthread c cposix posix ucb BSD<br/>gdbm_compat&#39; libswanted_uselargefiles=&#39;&#39; line=&#39;&#39; lint=&#39;&#39; lkflags=&#39;&#39; ln=&#39;ln&#39;<br/>lns=&#39;/usr/bin/ln -s&#39;<br/>localtime_r_proto=&#39;REENTRANT_PROTO_S_TS&#39;<br/>locincpth=&#39;/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include&#39;<br/>loclibpth=&#39;/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib&#39;<br/>longdblsize=&#39;12&#39;<br/>longlongsize=&#39;8&#39;<br/>longsize=&#39;4&#39;<br/>lp=&#39;&#39;<br/>lpr=&#39;&#39;<br/>ls=&#39;ls&#39;<br/>lseeksize=&#39;8&#39;<br/>lseektype=&#39;off_t&#39;<br/>mad=&#39;&#39;<br/>madlyh=&#39;&#39;<br/>madlyobj=&#39;&#39;<br/>madlysrc=&#39;&#39;<br/>mail=&#39;&#39;<br/>mailx=&#39;&#39;<br/>make=&#39;make&#39;<br/>make_set_make=&#39;#&#39;<br/>mallocobj=&#39;&#39;<br/>mallocsrc=&#39;&#39;<br/>malloctype=&#39;void *&#39;<br/>man1dir=&#39;/usr/share/man/man1&#39;<br/>man1direxp=&#39;/usr/share/man/man1&#39;<br/>man1ext=&#39;1&#39;<br/>man3dir=&#39;/usr/share/man/man3pm&#39;<br/>man3direxp=&#39;/usr/share/man/man3pm&#39;<br/>man3ext=&#39;3pm&#39;<br/>mips_type=&#39;&#39;<br/>mistrustnm=&#39;&#39;<br/>mkdir=&#39;mkdir&#39;<br/>mmaptype=&#39;void *&#39;<br/>modetype=&#39;mode_t&#39;<br/>more=&#39;more&#39;<br/>multiarch=&#39;&#39;<br/>mv=&#39;&#39;<br/>myarchname=&#39;i686-linux&#39;<br/>mydomain=&#39;.(none)&#39;<br/>myhostname=&#39;localhost&#39;<br/>myuname=&#39;linux jonund.mageia.org 3.4.24-server-3.mga2 #1 smp sat jan 5 03:09:04<br/>utc 2013 i686 i686 i686 gnulinux &#39; n=&#39;-n&#39;<br/>need_va_copy=&#39;&#39;<br/>netdb_hlen_type=&#39;size_t&#39;<br/>netdb_host_type=&#39;const void *&#39;<br/>netdb_name_type=&#39;const char *&#39;<br/>netdb_net_type=&#39;in_addr_t&#39;<br/>nm=&#39;nm&#39;<br/>nm_opt=&#39;&#39;<br/>nm_so_opt=&#39;--dynamic&#39;<br/>nonxs_ext=&#39;Archive/Extract Archive/Tar Attribute/Handlers AutoLoader B/Debug<br/>B/Deparse B/Lint CGI CPAN CPAN/Meta CPAN/Meta/YAML CPANPLUS CPANPLUS/Dist/Build<br/>Carp Devel/SelfStubber Digest Dumpvalue Env Errno ExtUtils/CBuilder<br/>ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker<br/>ExtUtils/Manifest ExtUtils/ParseXS File/CheckTree File/Fetch File/Path<br/>File/Temp FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate<br/>I18N/LangTags IO/Compress IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes<br/>Locale/Maketext Locale/Maketext/Simple Log/Message Log/Message/Simple<br/>Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList<br/>Module/Load Module/Load/Conditional Module/Loaded Module/Metadata<br/>Module/Pluggable NEXT Net/Ping Object/Accessor Package/Constants Params/Check<br/>Parse/CPAN/Meta Perl/OSType PerlIO/via/QuotedPrint Pod/Escapes Pod/Functions<br/>Pod/Html Pod/LaTeX Pod/Parser Pod/Perldoc Pod/Simple Safe Search/Dict<br/>SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Term/UI Test<br/>Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs<br/>Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local<br/>Version/Requirements XSLoader autodie autouse base bignum constant<br/>encoding/warnings if lib libnet parent perlfaq podlators&#39; nroff=&#39;nroff&#39;<br/>nvEUformat=&#39;&quot;E&quot;&#39; nvFUformat=&#39;&quot;F&quot;&#39; nvGUformat=&#39;&quot;G&quot;&#39;<br/>nv_overflows_integers_at=&#39;256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0&#39;<br/>nv_preserves_uv_bits=&#39;32&#39; nveformat=&#39;&quot;e&quot;&#39; nvfformat=&#39;&quot;f&quot;&#39; nvgformat=&#39;&quot;g&quot;&#39;<br/>nvsize=&#39;8&#39; nvtype=&#39;double&#39; o_nonblock=&#39;O_NONBLOCK&#39; obj_ext=&#39;.o&#39;<br/>old_pthread_create_joinable=&#39;&#39; optimize=&#39;-O2 -g -pipe -Wformat<br/>-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector<br/>--param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic<br/>-fasynchronous-unwind-tables -Wl,--as-needed -Wl,-z,relro -Wl,-O1<br/>-Wl,--build-id -Wl,--enable-new-dtags -pthread&#39; orderlib=&#39;false&#39; osname=&#39;linux&#39;<br/>osvers=&#39;3.4.24-server-3.mga2&#39; otherlibdirs=&#39; &#39; package=&#39;perl5&#39;<br/>pager=&#39;/usr/bin/less -R&#39; passcat=&#39;cat /etc/passwd&#39; patchlevel=&#39;16&#39; path_sep=&#39;:&#39;<br/>perl=&#39;perl&#39; perl5=&#39;/usr/bin/perl&#39; perl_patchlevel=&#39;&#39; perl_static_inline=&#39;static<br/>__inline__&#39; perladmin=&#39;root@localhost&#39; perllibs=&#39;-lnsl -ldl -lm -lcrypt -lutil<br/>-lpthread -lc&#39; perlpath=&#39;/usr/bin/perl&#39;<br/>pg=&#39;pg&#39;<br/>phostname=&#39;&#39;<br/>pidtype=&#39;pid_t&#39;<br/>plibpth=&#39;/lib/i586-mageia-linux-gnu/4.7.2 /lib /usr/lib/i586-mageia-linux-gnu/4.7.2 /usr/lib&#39;<br/>pmake=&#39;&#39;<br/>pr=&#39;&#39;<br/>prefix=&#39;/usr&#39;<br/>prefixexp=&#39;/usr&#39;<br/>privlib=&#39;/usr/lib/perl5/5.16.3&#39;<br/>privlibexp=&#39;/usr/lib/perl5/5.16.3&#39;<br/>procselfexe=&#39;&quot;/proc/self/exe&quot;&#39;<br/>prototype=&#39;define&#39;<br/>ptrsize=&#39;4&#39;<br/>quadkind=&#39;3&#39;<br/>quadtype=&#39;long long&#39;<br/>randbits=&#39;48&#39;<br/>randfunc=&#39;drand48&#39;<br/>random_r_proto=&#39;REENTRANT_PROTO_I_St&#39;<br/>randseedtype=&#39;long&#39;<br/>ranlib=&#39;:&#39;<br/>rd_nodata=&#39;-1&#39;<br/>readdir64_r_proto=&#39;REENTRANT_PROTO_I_TSR&#39;<br/>readdir_r_proto=&#39;REENTRANT_PROTO_I_TSR&#39;<br/>revision=&#39;5&#39;<br/>rm=&#39;rm&#39;<br/>rm_try=&#39;/usr/bin/rm -f try try a.out .out try.[cho] try..o core core.try*<br/>try.core*&#39; rmail=&#39;&#39;<br/>run=&#39;&#39;<br/>runnm=&#39;false&#39;<br/>sGMTIME_max=&#39;2147483647&#39;<br/>sGMTIME_min=&#39;-2147483648&#39;<br/>sLOCALTIME_max=&#39;2147483647&#39;<br/>sLOCALTIME_min=&#39;-2147483648&#39;<br/>sPRIEUldbl=&#39;&quot;LE&quot;&#39;<br/>sPRIFUldbl=&#39;&quot;LF&quot;&#39;<br/>sPRIGUldbl=&#39;&quot;LG&quot;&#39;<br/>sPRIXU64=&#39;&quot;LX&quot;&#39;<br/>sPRId64=&#39;&quot;Ld&quot;&#39;<br/>sPRIeldbl=&#39;&quot;Le&quot;&#39;<br/>sPRIfldbl=&#39;&quot;Lf&quot;&#39;<br/>sPRIgldbl=&#39;&quot;Lg&quot;&#39;<br/>sPRIi64=&#39;&quot;Li&quot;&#39;<br/>sPRIo64=&#39;&quot;Lo&quot;&#39;<br/>sPRIu64=&#39;&quot;Lu&quot;&#39;<br/>sPRIx64=&#39;&quot;Lx&quot;&#39;<br/>sSCNfldbl=&#39;&quot;Lf&quot;&#39;<br/>sched_yield=&#39;sched_yield()&#39;<br/>scriptdir=&#39;/usr/bin&#39;<br/>scriptdirexp=&#39;/usr/bin&#39;<br/>sed=&#39;sed&#39;<br/>seedfunc=&#39;srand48&#39;<br/>selectminbits=&#39;32&#39;<br/>selecttype=&#39;fd_set *&#39;<br/>sendmail=&#39;&#39;<br/>setgrent_r_proto=&#39;0&#39;<br/>sethostent_r_proto=&#39;0&#39;<br/>setlocale_r_proto=&#39;0&#39;<br/>setnetent_r_proto=&#39;0&#39;<br/>setprotoent_r_proto=&#39;0&#39;<br/>setpwent_r_proto=&#39;0&#39;<br/>setservent_r_proto=&#39;0&#39;<br/>sh=&#39;/bin/sh&#39;<br/>shar=&#39;&#39;<br/>sharpbang=&#39;#!&#39;<br/>shmattype=&#39;void *&#39;<br/>shortsize=&#39;2&#39;<br/>shrpenv=&#39;&#39;<br/>shsharp=&#39;true&#39;<br/>sig_count=&#39;65&#39;<br/>sig_name=&#39;ZERO HUP INT QUIT ILL TRAP ABRT BUS FPE KILL USR1 SEGV USR2 PIPE ALRM<br/>TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG XCPU XFSZ VTALRM PROF WINCH IO<br/>PWR SYS NUM32 NUM33 RTMIN NUM35 NUM36 NUM37 NUM38 NUM39 NUM40 NUM41 NUM42 NUM43<br/>NUM44 NUM45 NUM46 NUM47 NUM48 NUM49 NUM50 NUM51 NUM52 NUM53 NUM54 NUM55 NUM56<br/>NUM57 NUM58 NUM59 NUM60 NUM61 NUM62 NUM63 RTMAX IOT CLD POLL UNUSED &#39;<br/>sig_name_init=&#39;&quot;ZERO&quot;, &quot;HUP&quot;, &quot;INT&quot;, &quot;QUIT&quot;, &quot;ILL&quot;, &quot;TRAP&quot;, &quot;ABRT&quot;, &quot;BUS&quot;,<br/>&quot;FPE&quot;, &quot;KILL&quot;, &quot;USR1&quot;, &quot;SEGV&quot;, &quot;USR2&quot;, &quot;PIPE&quot;, &quot;ALRM&quot;, &quot;TERM&quot;, &quot;STKFLT&quot;,<br/>&quot;CHLD&quot;, &quot;CONT&quot;, &quot;STOP&quot;, &quot;TSTP&quot;, &quot;TTIN&quot;, &quot;TTOU&quot;, &quot;URG&quot;, &quot;XCPU&quot;, &quot;XFSZ&quot;,<br/>&quot;VTALRM&quot;, &quot;PROF&quot;, &quot;WINCH&quot;, &quot;IO&quot;, &quot;PWR&quot;, &quot;SYS&quot;, &quot;NUM32&quot;, &quot;NUM33&quot;, &quot;RTMIN&quot;,<br/>&quot;NUM35&quot;, &quot;NUM36&quot;, &quot;NUM37&quot;, &quot;NUM38&quot;, &quot;NUM39&quot;, &quot;NUM40&quot;, &quot;NUM41&quot;, &quot;NUM42&quot;,<br/>&quot;NUM43&quot;, &quot;NUM44&quot;, &quot;NUM45&quot;, &quot;NUM46&quot;, &quot;NUM47&quot;, &quot;NUM48&quot;, &quot;NUM49&quot;, &quot;NUM50&quot;,<br/>&quot;NUM51&quot;, &quot;NUM52&quot;, &quot;NUM53&quot;, &quot;NUM54&quot;, &quot;NUM55&quot;, &quot;NUM56&quot;, &quot;NUM57&quot;, &quot;NUM58&quot;,<br/>&quot;NUM59&quot;, &quot;NUM60&quot;, &quot;NUM61&quot;, &quot;NUM62&quot;, &quot;NUM63&quot;, &quot;RTMAX&quot;, &quot;IOT&quot;, &quot;CLD&quot;, &quot;POLL&quot;,<br/>&quot;UNUSED&quot;, 0&#39; sig_num=&#39;0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21<br/>22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47<br/>48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 6 17 29 31 &#39;<br/>sig_num_init=&#39;0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,<br/>19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,<br/>39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58,<br/>59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0&#39; sig_size=&#39;69&#39; signal_t=&#39;void&#39;<br/>sitearch=&#39;/usr/lib/perl5/site_perl/5.16.3/i386-linux-thread-multi&#39;<br/>sitearchexp=&#39;/usr/lib/perl5/site_perl/5.16.3/i386-linux-thread-multi&#39;<br/>sitebin=&#39;/usr/local/bin&#39; sitebinexp=&#39;/usr/local/bin&#39; sitehtml1dir=&#39;&#39;<br/>sitehtml1direxp=&#39;&#39; sitehtml3dir=&#39;&#39; sitehtml3direxp=&#39;&#39;<br/>sitelib=&#39;/usr/lib/perl5/site_perl/5.16.3&#39;<br/>sitelib_stem=&#39;/usr/lib/perl5/site_perl&#39;<br/>sitelibexp=&#39;/usr/lib/perl5/site_perl/5.16.3&#39;<br/>siteman1dir=&#39;/usr/local/share/man/man1&#39;<br/>siteman1direxp=&#39;/usr/local/share/man/man1&#39;<br/>siteman3dir=&#39;/usr/local/share/man/man3&#39;<br/>siteman3direxp=&#39;/usr/local/share/man/man3&#39; siteprefix=&#39;/usr&#39;<br/>siteprefixexp=&#39;/usr&#39; sitescript=&#39;/usr/local/bin&#39; sitescriptexp=&#39;/usr/local/bin&#39;<br/>sizesize=&#39;4&#39; sizetype=&#39;size_t&#39; sleep=&#39;&#39; smail=&#39;&#39; so=&#39;so&#39; sockethdr=&#39;&#39;<br/>socketlib=&#39;&#39; socksizetype=&#39;socklen_t&#39; sort=&#39;sort&#39;<br/>spackage=&#39;Perl5&#39;<br/>spitshell=&#39;cat&#39;<br/>srand48_r_proto=&#39;REENTRANT_PROTO_I_LS&#39;<br/>srandom_r_proto=&#39;REENTRANT_PROTO_I_TS&#39;<br/>src=&#39;.&#39;<br/>ssizetype=&#39;ssize_t&#39;<br/>st_ino_sign=&#39;1&#39;<br/>st_ino_size=&#39;8&#39;<br/>startperl=&#39;#!/usr/bin/perl&#39;<br/>startsh=&#39;#!/bin/sh&#39;<br/>static_ext=&#39; &#39;<br/>stdchar=&#39;char&#39;<br/>stdio_base=&#39;((fp)-&gt;_IO_read_base)&#39;<br/>stdio_bufsiz=&#39;((fp)-&gt;_IO_read_end - (fp)-&gt;_IO_read_base)&#39;<br/>stdio_cnt=&#39;((fp)-&gt;_IO_read_end - (fp)-&gt;_IO_read_ptr)&#39;<br/>stdio_filbuf=&#39;&#39;<br/>stdio_ptr=&#39;((fp)-&gt;_IO_read_ptr)&#39;<br/>stdio_stream_array=&#39;&#39;<br/>strerror_r_proto=&#39;REENTRANT_PROTO_B_IBW&#39;<br/>strings=&#39;/usr/include/string.h&#39;<br/>submit=&#39;&#39;<br/>subversion=&#39;3&#39;<br/>sysman=&#39;/usr/share/man/man1&#39;<br/>tail=&#39;&#39;<br/>tar=&#39;&#39;<br/>targetarch=&#39;&#39;<br/>tbl=&#39;&#39;<br/>tee=&#39;&#39;<br/>test=&#39;test&#39;<br/>timeincl=&#39;/usr/include/sys/time.h /usr/include/time.h &#39;<br/>timetype=&#39;time_t&#39;<br/>tmpnam_r_proto=&#39;REENTRANT_PROTO_B_B&#39;<br/>to=&#39;:&#39;<br/>touch=&#39;touch&#39;<br/>tr=&#39;tr&#39;<br/>trnl=&#39;\n&#39;<br/>troff=&#39;&#39;<br/>ttyname_r_proto=&#39;REENTRANT_PROTO_I_IBW&#39;<br/>u16size=&#39;2&#39;<br/>u16type=&#39;unsigned short&#39;<br/>u32size=&#39;4&#39;<br/>u32type=&#39;unsigned long&#39;<br/>u64size=&#39;8&#39;<br/>u64type=&#39;unsigned long long&#39;<br/>u8size=&#39;1&#39;<br/>u8type=&#39;unsigned char&#39;<br/>uidformat=&#39;&quot;lu&quot;&#39;<br/>uidsign=&#39;1&#39;<br/>uidsize=&#39;4&#39;<br/>uidtype=&#39;uid_t&#39;<br/>uname=&#39;uname&#39;<br/>uniq=&#39;uniq&#39;<br/>uquadtype=&#39;unsigned long long&#39;<br/>use5005threads=&#39;&#39;<br/>use64bitall=&#39;&#39;<br/>use64bitint=&#39;&#39;<br/>usecrosscompile=&#39;&#39;<br/>usedevel=&#39;&#39;<br/>usedl=&#39;define&#39;<br/>usedtrace=&#39;&#39;<br/>usefaststdio=&#39;&#39;<br/>useithreads=&#39;define&#39;<br/>usekernprocpathname=&#39;&#39;<br/>uselargefiles=&#39;define&#39;<br/>uselongdouble=&#39;&#39;<br/>usemallocwrap=&#39;define&#39;<br/>usemorebits=&#39;&#39;<br/>usemultiplicity=&#39;define&#39;<br/>usemymalloc=&#39;n&#39;<br/>usenm=&#39;false&#39;<br/>usensgetexecutablepath=&#39;&#39;<br/>useopcode=&#39;true&#39;<br/>useperlio=&#39;define&#39;<br/>useposix=&#39;true&#39;<br/>usereentrant=&#39;&#39;<br/>userelocatableinc=&#39;&#39;<br/>usesfio=&#39;false&#39;<br/>useshrplib=&#39;true&#39;<br/>usesitecustomize=&#39;&#39;<br/>usesocks=&#39;&#39;<br/>usethreads=&#39;define&#39;<br/>usevendorprefix=&#39;define&#39;<br/>usevfork=&#39;false&#39;<br/>usrinc=&#39;/usr/include&#39;<br/>uuname=&#39;&#39;<br/>uvXUformat=&#39;&quot;lX&quot;&#39;<br/>uvoformat=&#39;&quot;lo&quot;&#39;<br/>uvsize=&#39;4&#39;<br/>uvtype=&#39;unsigned long&#39;<br/>uvuformat=&#39;&quot;lu&quot;&#39;<br/>uvxformat=&#39;&quot;lx&quot;&#39;<br/>vaproto=&#39;define&#39;<br/>vendorarch=&#39;/usr/lib/perl5/vendor_perl/5.16.3/i386-linux-thread-multi&#39;<br/>vendorarchexp=&#39;/usr/lib/perl5/vendor_perl/5.16.3/i386-linux-thread-multi&#39;<br/>vendorbin=&#39;/usr/bin&#39;<br/>vendorbinexp=&#39;/usr/bin&#39;<br/>vendorhtml1dir=&#39; &#39;<br/>vendorhtml1direxp=&#39;&#39;<br/>vendorhtml3dir=&#39; &#39;<br/>vendorhtml3direxp=&#39;&#39;<br/>vendorlib=&#39;/usr/lib/perl5/vendor_perl/5.16.3&#39;<br/>vendorlib_stem=&#39;/usr/lib/perl5/vendor_perl&#39;<br/>vendorlibexp=&#39;/usr/lib/perl5/vendor_perl/5.16.3&#39;<br/>vendorman1dir=&#39;/usr/share/man/man1&#39;<br/>vendorman1direxp=&#39;/usr/share/man/man1&#39;<br/>vendorman3dir=&#39;/usr/share/man/man3&#39;<br/>vendorman3direxp=&#39;/usr/share/man/man3&#39;<br/>vendorprefix=&#39;/usr&#39;<br/>vendorprefixexp=&#39;/usr&#39;<br/>vendorscript=&#39;/usr/bin&#39;<br/>vendorscriptexp=&#39;/usr/bin&#39;<br/>version=&#39;5.16.3&#39;<br/>version_patchlevel_string=&#39;version 16 subversion 3&#39;<br/>versiononly=&#39;&#39;<br/>vi=&#39;&#39;<br/>voidflags=&#39;15&#39;<br/>xlibpth=&#39;/usr/lib/386 /lib/386&#39;<br/>yacc=&#39;yacc&#39;<br/>yaccflags=&#39;&#39;<br/>zcat=&#39;&#39;<br/>zip=&#39;zip&#39;<br/><br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>List of Networking Clients - http://shlom.in/net-clients<br/><br/>I hope that you agree with me that 99.9218485921% of the users wouldn&acirc;&#128;&#153;t bother<br/>themselves with recompilation (or any other manual step for that matter) to<br/>make their games run 1.27127529900685765% faster ;-) &acirc;&#128;&#148; Nadav Har&acirc;&#128;&#153;El<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202265.html Sat, 25 May 2013 16:36:42 +0000 Re: Global interpreter destruction callback by Vincent Pit On 25/05/2013 15:42, Steffen Mueller wrote:<br/>&gt; Hi all,<br/>&gt;<br/>&gt; to be able to address long standing issues with free-ing resources in <br/>&gt; an XS module that may be used very late during global destruction, <br/>&gt; I&#39;ve just implemented PL_destructcb, a global C-level callback that <br/>&gt; will be invoked very late in the interpreter destruction - long after <br/>&gt; all Perl code has finished executing.<br/>&gt;<br/>&gt; This was triggered by the recent thread about Storable, but I <br/>&gt; appreciate this doesn&#39;t single-handedly address the issue raised in <br/>&gt; that thread. What it DOES do is allow me to fix a long-standing <br/>&gt; (constant-sized) memory leak in the Class::XSAccessor module which <br/>&gt; uses out-of-interpreter state.<br/>&gt;<br/>&gt; I would appreciate feedback and review before I push this to blead: <br/>&gt; branch smueller/destructcb.<br/>&gt;<br/>&gt; Best regards,<br/>&gt; Steffen<br/>&gt;<br/><br/>Do you have an example where a callback set up with call_atexit() is <br/>executed too early in the global destruction phase? It is supposed to <br/>fire after all SVs are freed (except for some globals).<br/><br/><br/>Vincent<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202264.html Sat, 25 May 2013 16:13:10 +0000 Re: [perl #118055] miniperl fails with SIGBUS on sparc (usethreads+use64bitint) by Craig A. Berry On Sat, May 25, 2013 at 10:04 AM, Nicholas Clark &lt;nick@ccl4.org&gt; wrote:<br/><br/>&gt;<br/>&gt;<br/>&gt; #if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; IVSIZE &gt; PTRSIZE<br/>&gt;<br/>&gt;<br/>FWIW, this would be true on VMS Alpha or Itanium configured with<br/>-Duse64bitint -Dusethreads. Pointers are 32-bit by default. 64-bit<br/>pointers can be requested at compile time, but as far as I know, no one&#39;s<br/>ever added support to Perl for that. Alignment faults are not fatal, but<br/>badly degrade performance, especially on Itanium where more of the fault<br/>handling is done by the OS in software.<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202263.html Sat, 25 May 2013 15:42:02 +0000 Jenkins build is back to normal : perl5-threaded #2043 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5-threaded/2043/changes&gt;<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202262.html Sat, 25 May 2013 15:37:47 +0000 Re: [perl #118055] miniperl fails with SIGBUS on sparc(usethreads+use64bitint) by Andrew Dougherty On Sat, 25 May 2013, Nicholas Clark wrote:<br/><br/>&gt; On Sat, May 25, 2013 at 10:57:47AM -0400, Andy Dougherty wrote:<br/>&gt; <br/>&gt; &gt; It&#39;s just taking a long time to actually finish. I&#39;ll report back when it <br/>&gt; &gt; does.<br/>&gt; &gt; <br/>&gt; &gt; Meanwhile, what would you think about tweaking it like this:<br/>&gt; &gt; <br/>&gt; &gt; diff --git a/op.c b/op.c<br/>&gt; &gt; index 792e8d6..fd69c56 100644<br/>&gt; &gt; --- a/op.c<br/>&gt; &gt; +++ b/op.c<br/>&gt; &gt; @@ -175,7 +175,7 @@ Perl_Slab_Alloc(pTHX_ size_t sz)<br/>&gt; &gt; || (CvSTART(PL_compcv) &amp;&amp; !CvSLABBED(PL_compcv)))<br/>&gt; &gt; return PerlMemShared_calloc(1, sz);<br/>&gt; &gt; <br/>&gt; &gt; -#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE<br/>&gt; &gt; +#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; !defined(__x86_64__)<br/>&gt; &gt; /* Work around a goof with alignment on our part. For sparc32 (and<br/>&gt; &gt; possibly other architectures), if built with -Duse64bitint, the IV<br/>&gt; &gt; op_pmoffset in struct pmop should be 8 byte aligned, but the slab<br/>&gt; <br/>&gt; Good point. But I think that that&#39;s more restrictive than it needs to be.<br/>&gt; I think that this would be valid:<br/>&gt; <br/>&gt; #if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; IVSIZE &gt; PTRSIZE<br/><br/>Yes, that would catch the relevant SPARC case (-Duse64bitint on an <br/>otherwise 32-bit build).<br/><br/>&gt; (but I have not yet tested it)<br/>&gt; <br/>&gt; &gt; As far as I am aware, the alignment isn&#39;t an issue on x86_64, but there is <br/>&gt; &gt; a small, but barely measureable, cost to the if(sz == sizeof(struct pmop)) <br/>&gt; &gt; test even in cases where it isn&#39;t used. Fiddling a bit with perbench <br/>&gt; &gt; benchmarks, this modified version of one of the hash tests:<br/>&gt; <br/>&gt; and would avoid that cost on other 64 bit platforms.<br/>&gt; <br/>&gt; &gt; my $i = &quot;abcdefg&quot;;<br/>&gt; &gt; for (1..2000) {<br/>&gt; &gt; for my $j (1..2000) {<br/>&gt; &gt; $hash{$i} = $j;<br/>&gt; &gt; }<br/>&gt; &gt; $i++;<br/>&gt; &gt; }<br/>&gt; &gt; <br/>&gt; &gt; my $k;<br/>&gt; &gt; foreach $k (keys %hash) {<br/>&gt; &gt; my $v = $hash{$k};<br/>&gt; &gt; }<br/>&gt; &gt; <br/>&gt; &gt; ran slightly quicker on x86_64 (differences were consistently at the 2-3 <br/>&gt; &gt; sigma level as reported by dumbbench) with that suggested tweak.<br/>&gt; <br/>&gt; That&#39;s a test doing work at runtime, which is affected by a compile-time<br/>&gt; change? As best I can work out, there are no OPs allocated at runtime by<br/>&gt; that code.<br/><br/>Correct. With current blead on Linux x86_64, every op allocation still <br/>tests<br/><br/> if(sz == sizeof(struct pmop) <br/><br/>and even though the test is always false for that program, the cummulative <br/>cost of doing the test is (just barely) measurable.<br/><br/>Anyway, it works as is. I think your suggested change should be an <br/>improvement. I&#39;ll go ahead and run some tests, but it looks like it <br/>should be fine and safe to backport to 5.18.0.<br/><br/>-- <br/> Andy Dougherty doughera@lafayette.edu<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202261.html Sat, 25 May 2013 15:27:13 +0000 Jenkins build is back to normal : perl5 #2414 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5/2414/changes&gt;<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202260.html Sat, 25 May 2013 15:15:20 +0000 Re: [perl #118055] miniperl fails with SIGBUS on sparc(usethreads+use64bitint) by Nicholas Clark On Sat, May 25, 2013 at 10:57:47AM -0400, Andy Dougherty wrote:<br/><br/>&gt; It&#39;s just taking a long time to actually finish. I&#39;ll report back when it <br/>&gt; does.<br/>&gt; <br/>&gt; Meanwhile, what would you think about tweaking it like this:<br/>&gt; <br/>&gt; diff --git a/op.c b/op.c<br/>&gt; index 792e8d6..fd69c56 100644<br/>&gt; --- a/op.c<br/>&gt; +++ b/op.c<br/>&gt; @@ -175,7 +175,7 @@ Perl_Slab_Alloc(pTHX_ size_t sz)<br/>&gt; || (CvSTART(PL_compcv) &amp;&amp; !CvSLABBED(PL_compcv)))<br/>&gt; return PerlMemShared_calloc(1, sz);<br/>&gt; <br/>&gt; -#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE<br/>&gt; +#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; !defined(__x86_64__)<br/>&gt; /* Work around a goof with alignment on our part. For sparc32 (and<br/>&gt; possibly other architectures), if built with -Duse64bitint, the IV<br/>&gt; op_pmoffset in struct pmop should be 8 byte aligned, but the slab<br/><br/>Good point. But I think that that&#39;s more restrictive than it needs to be.<br/>I think that this would be valid:<br/><br/>#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; IVSIZE &gt; PTRSIZE<br/><br/>(but I have not yet tested it)<br/><br/>&gt; As far as I am aware, the alignment isn&#39;t an issue on x86_64, but there is <br/>&gt; a small, but barely measureable, cost to the if(sz == sizeof(struct pmop)) <br/>&gt; test even in cases where it isn&#39;t used. Fiddling a bit with perbench <br/>&gt; benchmarks, this modified version of one of the hash tests:<br/><br/>and would avoid that cost on other 64 bit platforms.<br/><br/>&gt; my $i = &quot;abcdefg&quot;;<br/>&gt; for (1..2000) {<br/>&gt; for my $j (1..2000) {<br/>&gt; $hash{$i} = $j;<br/>&gt; }<br/>&gt; $i++;<br/>&gt; }<br/>&gt; <br/>&gt; my $k;<br/>&gt; foreach $k (keys %hash) {<br/>&gt; my $v = $hash{$k};<br/>&gt; }<br/>&gt; <br/>&gt; ran slightly quicker on x86_64 (differences were consistently at the 2-3 <br/>&gt; sigma level as reported by dumbbench) with that suggested tweak.<br/><br/>That&#39;s a test doing work at runtime, which is affected by a compile-time<br/>change? As best I can work out, there are no OPs allocated at runtime by<br/>that code.<br/><br/>Nicholas Clark<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202259.html Sat, 25 May 2013 15:05:05 +0000 Re: [perl #118055] miniperl fails with SIGBUS on sparc(usethreads+use64bitint) by Andy Dougherty On Fri, 24 May 2013, Nicholas Clark wrote:<br/><br/>&gt; On Fri, May 24, 2013 at 10:30:09AM +0300, Niko Tyni wrote:<br/>&gt; &gt; On Wed, May 22, 2013 at 01:26:03PM -0700, Nicholas Clark via RT wrote:<br/>&gt; &gt; &gt; On Wed, May 22, 2013 at 10:39:53PM +0300, Niko Tyni wrote:<br/>&gt; &gt; <br/>&gt; &gt; &gt; I had an insight on the tram. All sorts of complex hacks are complex...<br/>&gt; &gt; &gt; <br/>&gt; &gt; &gt; &gt; Thanks for looking at this. I&#39;m happy to test anything you come up with. <br/>&gt; &gt; <br/>&gt; &gt; &gt; Would be nice to test this with &amp; without -Duse64bitint on as many<br/>&gt; &gt; &gt; architectures as practical. (I can get to x86_64, x86, sparc and mips, but<br/>&gt; &gt; &gt; not tonight)<br/>&gt; &gt; <br/>&gt; &gt; I tested with v5.18.0 and a &quot;backported&quot; version of the patch. All tests<br/>&gt; &gt; pass with GCC 4.6.3 and -Dusethreads, both with and without -Duse64bitint,<br/>&gt; &gt; on these Debian platforms:<br/>&gt; &gt; <br/>&gt; &gt; armhf (ARM hard-float, 32bit)<br/>&gt; &gt; ia64 (Itanium, 64bit)<br/>&gt; &gt; mips (32bit, big endian)<br/>&gt; &gt; mipsel (32bit, little endian)<br/>&gt; &gt; powerpc (32bit)<br/>&gt; &gt; s390 (IBM S/390, 31bit)<br/>&gt; &gt; s390x (IBM S/390 64bit)<br/>&gt; &gt; sparc (32bit)<br/>&gt; <br/>&gt; Thanks. It also passed on everything I tried it on. I&#39;ve pushed it to blead.<br/><br/>Thank you. So far it&#39;s working fine for me and I anticipate no problems. <br/>It&#39;s just taking a long time to actually finish. I&#39;ll report back when it <br/>does.<br/><br/>Meanwhile, what would you think about tweaking it like this:<br/><br/>diff --git a/op.c b/op.c<br/>index 792e8d6..fd69c56 100644<br/>--- a/op.c<br/>+++ b/op.c<br/>@@ -175,7 +175,7 @@ Perl_Slab_Alloc(pTHX_ size_t sz)<br/> || (CvSTART(PL_compcv) &amp;&amp; !CvSLABBED(PL_compcv)))<br/> return PerlMemShared_calloc(1, sz);<br/> <br/>-#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE<br/>+#if defined(USE_ITHREADS) &amp;&amp; IVSIZE &gt; U32SIZE &amp;&amp; !defined(__x86_64__)<br/> /* Work around a goof with alignment on our part. For sparc32 (and<br/> possibly other architectures), if built with -Duse64bitint, the IV<br/> op_pmoffset in struct pmop should be 8 byte aligned, but the slab<br/><br/>As far as I am aware, the alignment isn&#39;t an issue on x86_64, but there is <br/>a small, but barely measureable, cost to the if(sz == sizeof(struct pmop)) <br/>test even in cases where it isn&#39;t used. Fiddling a bit with perbench <br/>benchmarks, this modified version of one of the hash tests:<br/><br/>my $i = &quot;abcdefg&quot;;<br/>for (1..2000) {<br/> for my $j (1..2000) {<br/> $hash{$i} = $j;<br/> }<br/> $i++;<br/>}<br/><br/>my $k;<br/>foreach $k (keys %hash) {<br/> my $v = $hash{$k};<br/>}<br/><br/>ran slightly quicker on x86_64 (differences were consistently at the 2-3 <br/>sigma level as reported by dumbbench) with that suggested tweak.<br/><br/>&gt; Sadly the two available sparc machines at the GCC compile farm are scheduled<br/>&gt; to be decommissioned at the end of June, so I probably won&#39;t be able to test<br/>&gt; on sparc for much longer. However, it does seem that the kernel bug is fixed.<br/>&gt; Previously the test suite had been be able to create an unkillable busy<br/>&gt; process. So it looks like it is now &quot;safe&quot; to run a blead smoker on 32 bit<br/>&gt; sparc Linux.<br/><br/>That would be nice. I can continue to test on SPARC, but the machine <br/>isn&#39;t online most of the time, and is sometimes needed for other tasks, so <br/>I can&#39;t really run a smoker on it.<br/><br/>-- <br/> Andy Dougherty doughera@lafayette.edu<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202258.html Sat, 25 May 2013 14:58:16 +0000 Build failed in Jenkins: perl5-threaded #2042 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5-threaded/2042/&gt;<br/><br/>------------------------------------------<br/>[...truncated 11105 lines...]<br/>../ext/XS-APItest/t/callregexec.t ................................. ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../ext/XS-APItest/t/check_warnings.t .............................. ok<br/>../ext/Pod-Html/t/htmlview.t ...................................... ok<br/>../ext/XS-APItest/t/cleanup.t ..................................... ok<br/>../ext/XS-Typemap/t/Typemap.t ..................................... ok<br/>../ext/arybase/t/aeach.t .......................................... ok<br/>../ext/Pod-Html/t/poderr.t ........................................ ok<br/>../ext/XS-APItest/t/clone-with-stack.t ............................ ok<br/>../ext/XS-APItest/t/cophh.t ....................................... ok<br/>../ext/Pod-Html/t/podnoerr.t ...................................... ok<br/>../ext/XS-APItest/t/coplabel.t .................................... ok<br/>../ext/arybase/t/aelem.t .......................................... ok<br/>../ext/XS-APItest/t/copstash.t .................................... ok<br/>../ext/arybase/t/akeys.t .......................................... ok<br/>../ext/re/t/lexical_debug.t ....................................... ok<br/>../ext/XS-APItest/t/copyhints.t ................................... ok<br/>../ext/re/t/qr.t .................................................. ok<br/>../ext/arybase/t/arybase.t ........................................ ok<br/>../ext/re/t/re.t .................................................. ok<br/>../ext/XS-APItest/t/customop.t .................................... ok<br/>../ext/re/t/re_funcs.t ............................................ ok<br/>../ext/arybase/t/aslice.t ......................................... ok<br/>../ext/XS-APItest/t/eval-filter.t ................................. ok<br/>../ext/arybase/t/av2arylen.t ...................................... ok<br/>../ext/XS-APItest/t/exception.t ................................... ok<br/>../ext/arybase/t/index.t .......................................... ok<br/>../ext/re/t/re_funcs_u.t .......................................... ok<br/>../ext/arybase/t/lslice.t ......................................... ok<br/>../ext/arybase/t/pos.t ............................................ ok<br/>../ext/re/t/reflags.t ............................................. ok<br/>../ext/XS-APItest/t/fetch_pad_names.t ............................. ok<br/>../dist/threads/t/state.t ......................................... ok<br/>../ext/XS-APItest/t/gotosub.t ..................................... ok<br/>../ext/arybase/t/scope.t .......................................... ok<br/>../ext/re/t/regop.t ............................................... ok<br/>../ext/arybase/t/splice.t ......................................... ok<br/>../ext/POSIX/t/sigset.t ........................................... ok<br/>../lib/AnyDBM_File.t .............................................. ok<br/>../ext/arybase/t/substr.t ......................................... ok<br/>../dist/threads/t/stress_cv.t ..................................... ok<br/>../ext/POSIX/t/sysconf.t .......................................... ok<br/>../ext/POSIX/t/taint.t ............................................ ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../dist/threads/t/stress_re.t ..................................... ok<br/>../lib/Config.t ................................................... ok<br/>../dist/threads/t/stress_string.t ................................. ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../lib/DB.t ....................................................... ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/DirHandle.t ................................................ ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/English.t .................................................. ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/Exporter.t ................................................. ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../dist/threads/t/thread.t ........................................ ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../ext/POSIX/t/termios.t .......................................... ok<br/>../lib/Net/protoent.t ............................................. ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../lib/Net/servent.t .............................................. ok<br/>../ext/POSIX/t/time.t ............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../ext/POSIX/t/unimplemented.t .................................... ok<br/>../lib/File/Copy.t ................................................ ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Symbol.t ................................................... ok<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../ext/POSIX/t/usage.t ............................................ ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../lib/Thread.t ................................................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../lib/bytes.t .................................................... ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../lib/File/stat.t ................................................ ok<br/>../lib/dumpvar.t .................................................. ok<br/>../lib/diagnostics.t .............................................. ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/Benchmark.t ................................................ ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/open.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/sigtrap.t .................................................. ok<br/>../lib/sort.t ..................................................... ok<br/>../lib/locale.t ................................................... ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/overload.t ................................................. ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../lib/charnames.t ................................................ ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>x2p/s2p.t ......................................................... ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=688669, 412 wallclock secs (137.24 usr 106.59 sys + 924.36 cusr 316.78 csys = 1484.97 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202257.html Sat, 25 May 2013 14:48:52 +0000 Smoke [blead] v5.19.0-234-g5bb4462 FAIL(F) linux 3.5.0-24-generic [debian] (x86_64/8 cpu) {blead_g++_quick} by George Greer Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_g++_quick/log5bb4462fed21484fd3bee6d2b0dcf402a4b547e8.log.gz<br/><br/>Automated smoke report for 5.19.1 patch 5bb4462fed21484fd3bee6d2b0dcf402a4b547e8 v5.19.0-234-g5bb4462<br/>zwei: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz (GenuineIntel 1733MHz) (x86_64/8 cpu)<br/> on linux - 3.5.0-24-generic [debian]<br/> using g++ version 4.7.3<br/> smoketime 44 minutes 56 seconds (average 11 minutes 14 seconds)<br/><br/>Summary: FAIL(F)<br/><br/>O = OK F = Failure(s), extended report at the bottom<br/>X = Failure(s) under TEST but not under harness<br/>? = still running or test results not (yet) available<br/>Build failures during: - = unknown or N/A<br/>c = Configure, m = make, M = make (after miniperl), t = make test-prep<br/><br/>v5.19.0-234-g5bb4462 Configuration (common) -Accflags=-DPERL_POISON -Dcc=g++<br/>----------- ---------------------------------------------------------<br/>F F <br/>F F -Duseithreads<br/>| +--------- -DDEBUGGING<br/>+----------- no debugging<br/><br/><br/>Locally applied patches:<br/> SMOKE5bb4462fed21484fd3bee6d2b0dcf402a4b547e8<br/><br/>Testsuite was run only with &#39;harness&#39;<br/><br/>Failures: (common-args) -Accflags=-DPERL_POISON -Dcc=g++<br/>[default] <br/>[default] -DDEBUGGING<br/>[default] -Duseithreads<br/>[default] -DDEBUGGING -Duseithreads<br/>../dist/Tie-File/t/00_version.t.............................FAILED<br/> Non-zero exit status: 1<br/> Bad plan. You planned 1 tests but ran 0.<br/><br/>Compiler messages(gcc):<br/>try.c: In function &acirc;&#128;&#152;int main()&acirc;&#128;&#153;:<br/>mg.c: In function &acirc;&#128;&#152;int Perl_magic_set(SV*, MAGIC*)&acirc;&#128;&#153;:<br/>mg.c:2774:43: warning: ignoring return value of &acirc;&#128;&#152;int setreuid(__uid_t, __uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2803:32: warning: ignoring return value of &acirc;&#128;&#152;int seteuid(__uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2833:43: warning: ignoring return value of &acirc;&#128;&#152;int setregid(__gid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2893:32: warning: ignoring return value of &acirc;&#128;&#152;int setegid(__gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>doio.c: In function &acirc;&#128;&#152;void S_exec_failed(const char*, int, int)&acirc;&#128;&#153;:<br/>doio.c:1384:43: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>doio.c: In function &acirc;&#128;&#152;PerlIOl** Perl_nextargv(GV*)&acirc;&#128;&#153;:<br/>doio.c:876:46: warning: ignoring return value of &acirc;&#128;&#152;int fchown(int, __uid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>pp_hot.c: In function &acirc;&#128;&#152;OP* Perl_pp_aassign()&acirc;&#128;&#153;:<br/>pp_hot.c:1185:18: warning: ignoring return value of &acirc;&#128;&#152;int setresuid(__uid_t, __uid_t, __uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>pp_hot.c:1217:18: warning: ignoring return value of &acirc;&#128;&#152;int setresgid(__gid_t, __gid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>util.c: In function &acirc;&#128;&#152;void Perl_croak_no_mem()&acirc;&#128;&#153;:<br/>util.c:1613:36: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>perlio.c: In function &acirc;&#128;&#152;void PerlIO_debug(const char*, ...)&acirc;&#128;&#153;:<br/>perlio.c:484:43: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;void Perl_sv_vcatpvfn_flags(SV*, const char*, STRLEN, __va_list_tag (*)[1], SV**, I32, bool*, U32)&acirc;&#128;&#153;:<br/>sv.c:10320:41: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c:11170:53: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;char* Perl_sv_2pv_flags(SV*, STRLEN*, I32)&acirc;&#128;&#153;:<br/>sv.c:2910:39: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>op.c: In function &acirc;&#128;&#152;OP* S_fold_constants(OP*)&acirc;&#128;&#153;:<br/>op.c:3235:1: warning: argument &acirc;&#128;&#152;o&acirc;&#128;&#153; might be clobbered by &acirc;&#128;&#152;longjmp&acirc;&#128;&#153; or &acirc;&#128;&#152;vfork&acirc;&#128;&#153; [-Wclobbered]<br/>sdbm.c: In function &acirc;&#128;&#152;int makroom(DBM*, long int, int)&acirc;&#128;&#153;:<br/>sdbm.c:378:70: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>Call.xs: In function &acirc;&#128;&#152;I32 filter_call(int, SV*, int)&acirc;&#128;&#153;:<br/>Call.xs:63:58: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 3 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:63:58: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 5 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:100:41: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 4 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:156:38: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 3 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:175:51: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 4 has type &acirc;&#128;&#152;long unsigned int&acirc;&#128;&#153; [-Wformat]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateInit(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:797:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_deflate(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:1015:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs:1024:34: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_flush(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:1133:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs:1142:34: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>doio.c: In function &acirc;&#128;&#152;void S_exec_failed(PerlInterpreter*, const char*, int, int)&acirc;&#128;&#153;:<br/>doio.c: In function &acirc;&#128;&#152;PerlIOl** Perl_nextargv(PerlInterpreter*, GV*)&acirc;&#128;&#153;:<br/>mg.c: In function &acirc;&#128;&#152;int Perl_magic_set(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>pp_hot.c: In function &acirc;&#128;&#152;OP* Perl_pp_aassign(PerlInterpreter*)&acirc;&#128;&#153;:<br/>perlio.c:475:56: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>perl.c: In function &acirc;&#128;&#152;void S_init_tls_and_interp(PerlInterpreter*)&acirc;&#128;&#153;:<br/>perl.c:99:2: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;DIR* Perl_dirp_dup(PerlInterpreter*, DIR*, CLONE_PARAMS*)&acirc;&#128;&#153;:<br/>sv.c:11616:26: warning: ignoring return value of &acirc;&#128;&#152;int fchdir(int)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;void Perl_sv_vcatpvfn_flags(PerlInterpreter*, SV*, const char*, STRLEN, __va_list_tag (*)[1], SV**, I32, bool*, U32)&acirc;&#128;&#153;:<br/>sv.c: In function &acirc;&#128;&#152;char* Perl_sv_2pv_flags(PerlInterpreter*, SV*, STRLEN*, I32)&acirc;&#128;&#153;:<br/>op.c: In function &acirc;&#128;&#152;OP* S_fold_constants(PerlInterpreter*, OP*)&acirc;&#128;&#153;:<br/>Call.xs: In function &acirc;&#128;&#152;I32 filter_call(PerlInterpreter*, int, SV*, int)&acirc;&#128;&#153;:<br/>shared.xs: In function &acirc;&#128;&#152;user_lock* S_get_userlock(PerlInterpreter*, SV*, bool)&acirc;&#128;&#153;:<br/>shared.xs:362:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void S_sharedsv_dec(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:535:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void Perl_sharedsv_share(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:564:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_get(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:739:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_set(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:817:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_free(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:835:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_local(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:868:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_FETCH(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:905:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_STORE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:960:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_DELETE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1003:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;U32 sharedsv_array_mg_FETCHSIZE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1066:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_array_mg_CLEAR(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1086:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void Perl_sharedsv_lock(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:1190:63: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_PUSH(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1287:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_UNSHIFT(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1305:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_POP(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1330:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_SHIFT(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1347:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_EXTEND(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1363:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_STORESIZE(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1373:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_EXISTS(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1385:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs:1395:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_FIRSTKEY(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1411:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_NEXTKEY(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1439:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared_bless(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1699:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateInit(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_deflate(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_flush(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>threads.xs: In function &acirc;&#128;&#152;ithread* S_ithread_create(PerlInterpreter*, SV*, IV, int, int, int, int)&acirc;&#128;&#153;:<br/>threads.xs:714:83: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>-- <br/>Report by Test::Smoke v1.53 build 1374 running on perl 5.14.2<br/>(Reporter v0.050 / Smoker v0.045)<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202256.html Sat, 25 May 2013 14:48:05 +0000 Smoke [blead] v5.19.0-234-g5bb4462 FAIL(F) linux 3.5.0-24-generic [debian] (x86_64/8 cpu) {blead_clang_quick} by George Greer Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log5bb4462fed21484fd3bee6d2b0dcf402a4b547e8.log.gz<br/><br/>Automated smoke report for 5.19.1 patch 5bb4462fed21484fd3bee6d2b0dcf402a4b547e8 v5.19.0-234-g5bb4462<br/>zwei: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)<br/> on linux - 3.5.0-24-generic [debian]<br/> using clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)<br/> smoketime 45 minutes 8 seconds (average 11 minutes 17 seconds)<br/><br/>Summary: FAIL(F)<br/><br/>O = OK F = Failure(s), extended report at the bottom<br/>X = Failure(s) under TEST but not under harness<br/>? = still running or test results not (yet) available<br/>Build failures during: - = unknown or N/A<br/>c = Configure, m = make, M = make (after miniperl), t = make test-prep<br/><br/>v5.19.0-234-g5bb4462 Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang<br/>----------- ---------------------------------------------------------<br/>F F <br/>F F -Duseithreads<br/>| +--------- -DDEBUGGING<br/>+----------- no debugging<br/><br/><br/>Locally applied patches:<br/> SMOKE5bb4462fed21484fd3bee6d2b0dcf402a4b547e8<br/><br/>Testsuite was run only with &#39;harness&#39;<br/><br/>Failures: (common-args) -Accflags=-DPERL_POISON -Dcc=clang<br/>[default] <br/>[default] -DDEBUGGING<br/>[default] -Duseithreads<br/>[default] -DDEBUGGING -Duseithreads<br/>../dist/Tie-File/t/00_version.t.............................FAILED<br/> Non-zero exit status: 1<br/> Bad plan. You planned 1 tests but ran 0.<br/><br/>Compiler messages(gcc):<br/>regcomp.c:10693:20: warning: unused variable &#39;parse_start&#39; [-Wunused-variable]<br/>Call.xs:63:11: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:63:31: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:100:13: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:156:11: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:175:14: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Storable.xs:4068:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:4255:10: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:5550:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:5613:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Collate.xs:616:2: warning: expression result unused [-Wunused-value]<br/>Collate.xs:606:2: warning: expression result unused [-Wunused-value]<br/>./a2py.c:64:48: warning: unused parameter &#39;env&#39; [-Wunused-parameter]<br/>-- <br/>Report by Test::Smoke v1.53 build 1374 running on perl 5.14.2<br/>(Reporter v0.050 / Smoker v0.045)<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202255.html Sat, 25 May 2013 14:46:10 +0000 Build failed in Jenkins: perl5 #2413 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5/2413/&gt;<br/><br/>------------------------------------------<br/>[...truncated 11016 lines...]<br/>../cpan/Unicode-Collate/t/loc_zhzy.t .............................. ok<br/>../cpan/IO-Compress/t/105oneshot-zip-bzip2-only.t ................. ok<br/>../cpan/Unicode-Collate/t/nonchar.t ............................... ok<br/>../cpan/Unicode-Collate/t/normal.t ................................ ok<br/>../cpan/Unicode-Collate/t/notable.t ............................... ok<br/>../cpan/Unicode-Collate/t/overcjk0.t .............................. ok<br/>../cpan/Module-Build/t/test_type.t ................................ ok<br/>../dist/Math-BigInt/t/mbi_rand.t .................................. ok<br/>../cpan/Unicode-Collate/t/overcjk1.t .............................. ok<br/>../cpan/Unicode-Collate/t/override.t .............................. ok<br/>../cpan/Unicode-Collate/t/rearrang.t .............................. ok<br/>../dist/Math-BigInt/t/mbimbf.t .................................... ok<br/>../cpan/Unicode-Collate/t/rewrite.t ............................... ok<br/>../dist/Math-BigInt/t/nan_cmp.t ................................... ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../dist/Math-BigInt/t/new_overloaded.t ............................ ok<br/>../cpan/Module-Build/t/test_types.t ............................... ok<br/>../dist/Math-BigInt/t/req_mbf0.t .................................. ok<br/>../cpan/Unicode-Collate/t/test.t .................................. ok<br/>../dist/Math-BigInt/t/req_mbf1.t .................................. ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../dist/Math-BigInt/t/req_mbfa.t .................................. ok<br/>../cpan/Unicode-Collate/t/trailwt.t ............................... ok<br/>../dist/Math-BigInt/t/req_mbfi.t .................................. ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../dist/Math-BigInt/t/req_mbfn.t .................................. ok<br/>../cpan/Unicode-Collate/t/variable.t .............................. ok<br/>../dist/Math-BigInt/t/req_mbfw.t .................................. ok<br/>../cpan/Unicode-Collate/t/version.t ............................... ok<br/>../dist/Math-BigInt/t/require.t ................................... ok<br/>../cpan/Unicode-Collate/t/view.t .................................. ok<br/>../lib/Config.t ................................................... ok<br/>../dist/Math-BigInt/t/round.t ..................................... ok<br/>../lib/DB.t ....................................................... ok<br/>../dist/Math-BigInt/t/rt-16221.t .................................. ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../dist/Math-BigInt/t/sub_ali.t ................................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../lib/DirHandle.t ................................................ ok<br/>../lib/English.t .................................................. ok<br/>../lib/Exporter.t ................................................. ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/File/Copy.t ................................................ ok<br/>../lib/FindBin.t .................................................. ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../dist/Math-BigInt/t/sub_mbf.t ................................... ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Symbol.t ................................................... ok<br/>../lib/Thread.t ................................................... skipped: No threads<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../cpan/IO-Compress/t/105oneshot-zip-only.t ....................... ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../lib/File/stat.t ................................................ ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../lib/bytes.t .................................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip-store-only.t ................. ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../lib/Benchmark.t ................................................ ok<br/>../lib/dumpvar.t .................................................. ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../lib/diagnostics.t .............................................. ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../lib/open.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../lib/sort.t ..................................................... ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/overload.t ................................................. ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/strict.t ................................................... ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>x2p/s2p.t ......................................................... ok<br/>../lib/charnames.t ................................................ ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=678377, 452 wallclock secs (142.37 usr 111.06 sys + 802.81 cusr 295.95 csys = 1352.19 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202254.html Sat, 25 May 2013 14:37:52 +0000 [perl #118167] OK: perl 5.18.0 +SAFEARGV0 on i686-linux 3.5.7-gentoo (UNINSTALLED) by James E Keenan via RT Thanks for the report!<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202253.html Sat, 25 May 2013 14:37:32 +0000 Build failed in Jenkins: perl5-threaded #2041 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5-threaded/2041/&gt;<br/><br/>------------------------------------------<br/>[...truncated 11105 lines...]<br/>../ext/XS-APItest/t/call_checker.t ................................ ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../ext/re/t/re_funcs_u.t .......................................... ok<br/>../ext/XS-APItest/t/caller.t ...................................... ok<br/>../ext/re/t/reflags.t ............................................. ok<br/>../ext/Pod-Html/t/htmldir5.t ...................................... ok<br/>../ext/XS-APItest/t/callregexec.t ................................. ok<br/>../ext/XS-APItest/t/check_warnings.t .............................. ok<br/>../ext/Pod-Html/t/htmlescp.t ...................................... ok<br/>../ext/XS-APItest/t/cleanup.t ..................................... ok<br/>../ext/POSIX/t/sigset.t ........................................... ok<br/>../ext/Pod-Html/t/htmllink.t ...................................... ok<br/>../ext/re/t/regop.t ............................................... ok<br/>../ext/Pod-Html/t/htmlview.t ...................................... ok<br/>../ext/POSIX/t/sysconf.t .......................................... ok<br/>../ext/XS-APItest/t/clone-with-stack.t ............................ ok<br/>../lib/AnyDBM_File.t .............................................. ok<br/>../ext/Pod-Html/t/poderr.t ........................................ ok<br/>../ext/XS-APItest/t/cophh.t ....................................... ok<br/>../ext/POSIX/t/taint.t ............................................ ok<br/>../ext/XS-APItest/t/coplabel.t .................................... ok<br/>../ext/Pod-Html/t/podnoerr.t ...................................... ok<br/>../ext/XS-APItest/t/copstash.t .................................... ok<br/>../ext/XS-APItest/t/copyhints.t ................................... ok<br/>../ext/XS-APItest/t/customop.t .................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../ext/XS-APItest/t/eval-filter.t ................................. ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../ext/XS-APItest/t/exception.t ................................... ok<br/>../ext/XS-APItest/t/fetch_pad_names.t ............................. ok<br/>../ext/XS-APItest/t/gotosub.t ..................................... ok<br/>../lib/Config.t ................................................... ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../lib/DB.t ....................................................... ok<br/>../dist/Math-BigInt/t/sub_mbf.t ................................... ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../ext/POSIX/t/termios.t .......................................... ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../ext/POSIX/t/time.t ............................................. ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip-store-only.t ................. ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/DirHandle.t ................................................ ok<br/>../ext/POSIX/t/unimplemented.t .................................... ok<br/>../lib/English.t .................................................. ok<br/>../lib/Exporter.t ................................................. ok<br/>../ext/POSIX/t/usage.t ............................................ ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/File/Copy.t ................................................ ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Symbol.t ................................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../lib/Thread.t ................................................... ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../lib/bytes.t .................................................... ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/File/stat.t ................................................ ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../lib/dumpvar.t .................................................. ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../lib/diagnostics.t .............................................. ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../lib/Benchmark.t ................................................ ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/open.t ..................................................... ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/sort.t ..................................................... ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/overload.t ................................................. ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>x2p/s2p.t ......................................................... ok<br/>../lib/charnames.t ................................................ ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../lib/perl5db.t .................................................. ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=688640, 538 wallclock secs (144.01 usr 115.90 sys + 945.02 cusr 328.26 csys = 1533.19 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202252.html Sat, 25 May 2013 14:33:46 +0000 Build failed in Jenkins: perl5 #2412 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5/2412/changes&gt;<br/><br/>Changes:<br/><br/>[jkeenan] changed uses of initialise to be consistent with other uses of initialize in guts pod<br/><br/>[jkeenan] typo fix for re pod change use of optimise to be consistent with other uses of optimize<br/><br/>[jkeenan] typo fix for reguts pod<br/><br/>------------------------------------------<br/>[...truncated 11016 lines...]<br/>../cpan/Unicode-Collate/t/normal.t ................................ ok<br/>../cpan/Unicode-Collate/t/notable.t ............................... ok<br/>../dist/Math-BigInt/t/inf_nan.t ................................... ok<br/>../cpan/Module-Build/t/test_types.t ............................... ok<br/>../dist/Math-BigInt/t/isa.t ....................................... ok<br/>../dist/Math-BigInt/t/lib_load.t .................................. ok<br/>../cpan/Unicode-Collate/t/overcjk0.t .............................. ok<br/>../dist/Math-BigInt/t/mbf_ali.t ................................... ok<br/>../dist/Math-BigInt/t/mbi_ali.t ................................... ok<br/>../cpan/Unicode-Collate/t/overcjk1.t .............................. ok<br/>../cpan/Unicode-Collate/t/override.t .............................. ok<br/>../cpan/Unicode-Collate/t/rearrang.t .............................. ok<br/>../dist/Math-BigInt/t/mbi_rand.t .................................. ok<br/>../cpan/Unicode-Collate/t/rewrite.t ............................... ok<br/>../dist/Math-BigInt/t/mbimbf.t .................................... ok<br/>../cpan/Unicode-Collate/t/test.t .................................. ok<br/>../dist/Math-BigInt/t/nan_cmp.t ................................... ok<br/>../cpan/Unicode-Collate/t/trailwt.t ............................... ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../dist/Math-BigInt/t/new_overloaded.t ............................ ok<br/>../dist/Math-BigInt/t/req_mbf0.t .................................. ok<br/>../cpan/Unicode-Collate/t/variable.t .............................. ok<br/>../dist/Math-BigInt/t/req_mbf1.t .................................. ok<br/>../cpan/Unicode-Collate/t/version.t ............................... ok<br/>../dist/Math-BigInt/t/req_mbfa.t .................................. ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../dist/Math-BigInt/t/req_mbfi.t .................................. ok<br/>../cpan/Unicode-Collate/t/view.t .................................. ok<br/>../dist/Math-BigInt/t/req_mbfn.t .................................. ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../dist/Math-BigInt/t/req_mbfw.t .................................. ok<br/>../cpan/IO-Compress/t/105oneshot-zip-store-only.t ................. ok<br/>../dist/Math-BigInt/t/require.t ................................... ok<br/>../lib/Config.t ................................................... ok<br/>../dist/Math-BigInt/t/round.t ..................................... ok<br/>../lib/DB.t ....................................................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../dist/Math-BigInt/t/rt-16221.t .................................. ok<br/>../lib/DirHandle.t ................................................ ok<br/>../dist/Math-BigInt/t/sub_ali.t ................................... ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../lib/English.t .................................................. ok<br/>../lib/Exporter.t ................................................. ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../lib/File/Copy.t ................................................ ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../dist/Math-BigInt/t/sub_mbf.t ................................... ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Symbol.t ................................................... ok<br/>../lib/Thread.t ................................................... skipped: No threads<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../lib/File/stat.t ................................................ ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../lib/blib.t ..................................................... ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../lib/bytes.t .................................................... ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../lib/Benchmark.t ................................................ ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../lib/diagnostics.t .............................................. ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../lib/dumpvar.t .................................................. ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/filetest.t ................................................. ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/open.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../lib/sort.t ..................................................... ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/overload.t ................................................. ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>x2p/s2p.t ......................................................... ok<br/>../lib/charnames.t ................................................ ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=678441, 458 wallclock secs (139.91 usr 111.99 sys + 799.18 cusr 311.43 csys = 1362.51 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202251.html Sat, 25 May 2013 14:19:41 +0000 Build failed in Jenkins: perl5-threaded #2040 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5-threaded/2040/changes&gt;<br/><br/>Changes:<br/><br/>[jkeenan] changed uses of initialise to be consistent with other uses of initialize in guts pod<br/><br/>[jkeenan] typo fix for re pod change use of optimise to be consistent with other uses of optimize<br/><br/>[jkeenan] typo fix for reguts pod<br/><br/>------------------------------------------<br/>[...truncated 11105 lines...]<br/>../cpan/Unicode-Collate/t/view.t .................................. ok<br/>../ext/Pod-Html/t/podnoerr.t ...................................... ok<br/>../ext/XS-APItest/t/eval-filter.t ................................. ok<br/>../ext/arybase/t/aeach.t .......................................... ok<br/>../ext/XS-APItest/t/exception.t ................................... ok<br/>../ext/arybase/t/aelem.t .......................................... ok<br/>../ext/arybase/t/akeys.t .......................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip-only.t ....................... ok<br/>../ext/arybase/t/arybase.t ........................................ ok<br/>../ext/arybase/t/aslice.t ......................................... ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../ext/arybase/t/av2arylen.t ...................................... ok<br/>../ext/arybase/t/index.t .......................................... ok<br/>../ext/XS-APItest/t/fetch_pad_names.t ............................. ok<br/>../ext/arybase/t/lslice.t ......................................... ok<br/>../ext/XS-APItest/t/gotosub.t ..................................... ok<br/>../dist/Math-BigInt/t/sub_mbf.t ................................... ok<br/>../ext/arybase/t/pos.t ............................................ ok<br/>../ext/XS-Typemap/t/Typemap.t ..................................... ok<br/>../ext/arybase/t/scope.t .......................................... ok<br/>../ext/re/t/lexical_debug.t ....................................... ok<br/>../ext/re/t/qr.t .................................................. ok<br/>../ext/re/t/re.t .................................................. ok<br/>../ext/arybase/t/splice.t ......................................... ok<br/>../ext/re/t/re_funcs.t ............................................ ok<br/>../ext/arybase/t/substr.t ......................................... ok<br/>../ext/re/t/re_funcs_u.t .......................................... ok<br/>../lib/AnyDBM_File.t .............................................. ok<br/>../ext/re/t/reflags.t ............................................. ok<br/>../ext/re/t/regop.t ............................................... ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../lib/Config.t ................................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../ext/POSIX/t/termios.t .......................................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../lib/DB.t ....................................................... ok<br/>../ext/POSIX/t/time.t ............................................. ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../ext/POSIX/t/unimplemented.t .................................... ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../ext/POSIX/t/usage.t ............................................ ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/DirHandle.t ................................................ ok<br/>../lib/English.t .................................................. ok<br/>../lib/Exporter.t ................................................. ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip-store-only.t ................. ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/File/Copy.t ................................................ ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../lib/FileHandle.t ............................................... ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../lib/Internals.t ................................................ ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Symbol.t ................................................... ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/Thread.t ................................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../lib/bytes.t .................................................... ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../lib/dumpvar.t .................................................. ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../lib/diagnostics.t .............................................. ok<br/>../lib/File/stat.t ................................................ ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/open.t ..................................................... ok<br/>../lib/Benchmark.t ................................................ ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../lib/sort.t ..................................................... ok<br/>../lib/overload.t ................................................. ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/subs.t ..................................................... ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>x2p/s2p.t ......................................................... ok<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../lib/charnames.t ................................................ ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=688581, 555 wallclock secs (146.22 usr 121.80 sys + 953.13 cusr 342.34 csys = 1563.49 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202250.html Sat, 25 May 2013 14:15:37 +0000 Build failed in Jenkins: perl5 #2411 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5/2411/changes&gt;<br/><br/>Changes:<br/><br/>[jkeenan] typo fix for ebcdic pod<br/><br/>[jkeenan] Correction recommended by Brad Gilbert++.<br/><br/>[jkeenan] typo fix for reapi pod<br/><br/>[jkeenan] typo fixes for recharclass pod<br/><br/>[jkeenan] typo fix for reref pod<br/><br/>[jkeenan] typo fix for unicode pod<br/><br/>[jkeenan] typo fixes for uniintro pod<br/><br/>[jkeenan] typo fix for vms pod<br/><br/>[jkeenan] typo fixes for diag changed use of initialise to be consistent with other uses of initialize<br/><br/>------------------------------------------<br/>[...truncated 11016 lines...]<br/>../cpan/Module-Build/t/test_type.t ................................ ok<br/>../cpan/Unicode-Collate/t/notable.t ............................... ok<br/>../cpan/Unicode-Collate/t/overcjk0.t .............................. ok<br/>../cpan/Unicode-Collate/t/overcjk1.t .............................. ok<br/>../dist/Math-BigInt/t/inf_nan.t ................................... ok<br/>../cpan/Unicode-Collate/t/override.t .............................. ok<br/>../dist/Math-BigInt/t/isa.t ....................................... ok<br/>../dist/Math-BigInt/t/lib_load.t .................................. ok<br/>../cpan/Unicode-Collate/t/rearrang.t .............................. ok<br/>../dist/Math-BigInt/t/mbf_ali.t ................................... ok<br/>../dist/Math-BigInt/t/mbi_ali.t ................................... ok<br/>../cpan/Unicode-Collate/t/rewrite.t ............................... ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../cpan/Unicode-Collate/t/test.t .................................. ok<br/>../cpan/Module-Build/t/test_types.t ............................... ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../cpan/Unicode-Collate/t/trailwt.t ............................... ok<br/>../cpan/Unicode-Collate/t/variable.t .............................. ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../cpan/Unicode-Collate/t/version.t ............................... ok<br/>../cpan/Unicode-Collate/t/view.t .................................. ok<br/>../lib/Config.t ................................................... ok<br/>../lib/DB.t ....................................................... ok<br/>../dist/Math-BigInt/t/mbi_rand.t .................................. ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../lib/DirHandle.t ................................................ ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../lib/English.t .................................................. ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/Exporter.t ................................................. ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../cpan/IO-Compress/t/105oneshot-zip-store-only.t ................. ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/File/Compare.t ............................................. ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../dist/Math-BigInt/t/mbimbf.t .................................... ok<br/>../dist/Math-BigInt/t/nan_cmp.t ................................... ok<br/>../dist/Math-BigInt/t/new_overloaded.t ............................ ok<br/>../lib/File/Copy.t ................................................ ok<br/>../dist/Math-BigInt/t/req_mbf0.t .................................. ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../dist/Math-BigInt/t/req_mbf1.t .................................. ok<br/>../dist/Math-BigInt/t/req_mbfa.t .................................. ok<br/>../dist/Math-BigInt/t/req_mbfi.t .................................. ok<br/>../dist/Math-BigInt/t/req_mbfn.t .................................. ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../dist/Math-BigInt/t/req_mbfw.t .................................. ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../dist/Math-BigInt/t/require.t ................................... ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../dist/Math-BigInt/t/round.t ..................................... ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../dist/Math-BigInt/t/rt-16221.t .................................. ok<br/>../cpan/IO-Compress/t/105oneshot-zip.t ............................ ok<br/>../dist/Math-BigInt/t/sub_ali.t ................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../lib/Symbol.t ................................................... ok<br/>../lib/Thread.t ................................................... skipped: No threads<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../dist/Math-BigInt/t/sub_mbf.t ................................... ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../lib/File/stat.t ................................................ ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../lib/bytes.t .................................................... ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../lib/Benchmark.t ................................................ ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/dumpvar.t .................................................. ok<br/>../lib/diagnostics.t .............................................. ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/open.t ..................................................... ok<br/>../lib/feature.t .................................................. ok<br/>../lib/overload64.t ............................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/sort.t ..................................................... ok<br/>../lib/overload.t ................................................. ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>../lib/charnames.t ................................................ ok<br/>x2p/s2p.t ......................................................... ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=678338, 469 wallclock secs (142.04 usr 115.53 sys + 805.17 cusr 316.28 csys = 1379.02 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202249.html Sat, 25 May 2013 14:01:09 +0000 Smoke [blead] v5.19.0-215-g837cf3a FAIL(F) linux 3.5.0-24-generic [debian] (x86_64/8 cpu) {blead_g++_quick} by George Greer Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_g++_quick/log837cf3a0e61d71cab1cf29f7186cf35e4a15a108.log.gz<br/><br/>Automated smoke report for 5.19.1 patch 837cf3a0e61d71cab1cf29f7186cf35e4a15a108 v5.19.0-215-g837cf3a<br/>zwei: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)<br/> on linux - 3.5.0-24-generic [debian]<br/> using g++ version 4.7.3<br/> smoketime 49 minutes 7 seconds (average 12 minutes 17 seconds)<br/><br/>Summary: FAIL(F)<br/><br/>O = OK F = Failure(s), extended report at the bottom<br/>X = Failure(s) under TEST but not under harness<br/>? = still running or test results not (yet) available<br/>Build failures during: - = unknown or N/A<br/>c = Configure, m = make, M = make (after miniperl), t = make test-prep<br/><br/>v5.19.0-215-g837cf3a Configuration (common) -Accflags=-DPERL_POISON -Dcc=g++<br/>----------- ---------------------------------------------------------<br/>F F <br/>F F -Duseithreads<br/>| +--------- -DDEBUGGING<br/>+----------- no debugging<br/><br/><br/>Locally applied patches:<br/> SMOKE837cf3a0e61d71cab1cf29f7186cf35e4a15a108<br/><br/>Testsuite was run only with &#39;harness&#39;<br/><br/>Failures: (common-args) -Accflags=-DPERL_POISON -Dcc=g++<br/>[default] <br/>[default] -DDEBUGGING<br/>[default] -Duseithreads<br/>[default] -DDEBUGGING -Duseithreads<br/>../dist/Tie-File/t/00_version.t.............................FAILED<br/> Non-zero exit status: 1<br/> Bad plan. You planned 1 tests but ran 0.<br/><br/>Compiler messages(gcc):<br/>try.c: In function &acirc;&#128;&#152;int main()&acirc;&#128;&#153;:<br/>util.c: In function &acirc;&#128;&#152;void Perl_croak_no_mem()&acirc;&#128;&#153;:<br/>util.c:1613:36: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>doio.c: In function &acirc;&#128;&#152;PerlIOl** Perl_nextargv(GV*)&acirc;&#128;&#153;:<br/>doio.c:876:46: warning: ignoring return value of &acirc;&#128;&#152;int fchown(int, __uid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>pp_hot.c: In function &acirc;&#128;&#152;OP* Perl_pp_aassign()&acirc;&#128;&#153;:<br/>pp_hot.c:1185:18: warning: ignoring return value of &acirc;&#128;&#152;int setresuid(__uid_t, __uid_t, __uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>pp_hot.c:1217:18: warning: ignoring return value of &acirc;&#128;&#152;int setresgid(__gid_t, __gid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>perlio.c: In function &acirc;&#128;&#152;void PerlIO_debug(const char*, ...)&acirc;&#128;&#153;:<br/>perlio.c:484:43: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;void Perl_sv_vcatpvfn_flags(SV*, const char*, STRLEN, __va_list_tag (*)[1], SV**, I32, bool*, U32)&acirc;&#128;&#153;:<br/>sv.c:10320:41: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c:11170:53: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;char* Perl_sv_2pv_flags(SV*, STRLEN*, I32)&acirc;&#128;&#153;:<br/>sv.c:2910:39: warning: ignoring return value of &acirc;&#128;&#152;char* gcvt(double, int, char*)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>op.c: In function &acirc;&#128;&#152;OP* S_fold_constants(OP*)&acirc;&#128;&#153;:<br/>op.c:3235:1: warning: argument &acirc;&#128;&#152;o&acirc;&#128;&#153; might be clobbered by &acirc;&#128;&#152;longjmp&acirc;&#128;&#153; or &acirc;&#128;&#152;vfork&acirc;&#128;&#153; [-Wclobbered]<br/>sdbm.c: In function &acirc;&#128;&#152;int makroom(DBM*, long int, int)&acirc;&#128;&#153;:<br/>sdbm.c:378:70: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>Call.xs: In function &acirc;&#128;&#152;I32 filter_call(int, SV*, int)&acirc;&#128;&#153;:<br/>Call.xs:63:58: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 3 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:63:58: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 5 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:100:41: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 4 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:156:38: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 3 has type &acirc;&#128;&#152;STRLEN {aka long unsigned int}&acirc;&#128;&#153; [-Wformat]<br/>Call.xs:175:51: warning: format &acirc;&#128;&#152;%d&acirc;&#128;&#153; expects argument of type &acirc;&#128;&#152;int&acirc;&#128;&#153;, but argument 4 has type &acirc;&#128;&#152;long unsigned int&acirc;&#128;&#153; [-Wformat]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateInit(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:797:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_deflate(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:1015:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs:1024:34: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_flush(CV*)&acirc;&#128;&#153;:<br/>Zlib.xs:1133:33: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>Zlib.xs:1142:34: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>doio.c: In function &acirc;&#128;&#152;void S_exec_failed(const char*, int, int)&acirc;&#128;&#153;:<br/>doio.c:1384:43: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c: In function &acirc;&#128;&#152;int Perl_magic_set(SV*, MAGIC*)&acirc;&#128;&#153;:<br/>mg.c:2774:43: warning: ignoring return value of &acirc;&#128;&#152;int setreuid(__uid_t, __uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2803:32: warning: ignoring return value of &acirc;&#128;&#152;int seteuid(__uid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2833:43: warning: ignoring return value of &acirc;&#128;&#152;int setregid(__gid_t, __gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>mg.c:2893:32: warning: ignoring return value of &acirc;&#128;&#152;int setegid(__gid_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>perl.c: In function &acirc;&#128;&#152;void S_init_tls_and_interp(PerlInterpreter*)&acirc;&#128;&#153;:<br/>perl.c:99:2: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>doio.c: In function &acirc;&#128;&#152;void S_exec_failed(PerlInterpreter*, const char*, int, int)&acirc;&#128;&#153;:<br/>doio.c: In function &acirc;&#128;&#152;PerlIOl** Perl_nextargv(PerlInterpreter*, GV*)&acirc;&#128;&#153;:<br/>mg.c: In function &acirc;&#128;&#152;int Perl_magic_set(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>pp_hot.c: In function &acirc;&#128;&#152;OP* Perl_pp_aassign(PerlInterpreter*)&acirc;&#128;&#153;:<br/>perlio.c:475:56: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;DIR* Perl_dirp_dup(PerlInterpreter*, DIR*, CLONE_PARAMS*)&acirc;&#128;&#153;:<br/>sv.c:11616:26: warning: ignoring return value of &acirc;&#128;&#152;int fchdir(int)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>sv.c: In function &acirc;&#128;&#152;void Perl_sv_vcatpvfn_flags(PerlInterpreter*, SV*, const char*, STRLEN, __va_list_tag (*)[1], SV**, I32, bool*, U32)&acirc;&#128;&#153;:<br/>sv.c: In function &acirc;&#128;&#152;char* Perl_sv_2pv_flags(PerlInterpreter*, SV*, STRLEN*, I32)&acirc;&#128;&#153;:<br/>op.c: In function &acirc;&#128;&#152;OP* S_fold_constants(PerlInterpreter*, OP*)&acirc;&#128;&#153;:<br/>Call.xs: In function &acirc;&#128;&#152;I32 filter_call(PerlInterpreter*, int, SV*, int)&acirc;&#128;&#153;:<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateInit(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_deflate(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>Zlib.xs: In function &acirc;&#128;&#152;void XS_Compress__Raw__Zlib__deflateStream_flush(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs: In function &acirc;&#128;&#152;user_lock* S_get_userlock(PerlInterpreter*, SV*, bool)&acirc;&#128;&#153;:<br/>shared.xs:362:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void S_sharedsv_dec(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:535:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void Perl_sharedsv_share(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:564:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_get(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:739:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_set(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:817:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_free(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:835:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_scalar_mg_local(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:868:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_FETCH(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:905:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_STORE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:960:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_elem_mg_DELETE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1003:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;U32 sharedsv_array_mg_FETCHSIZE(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1066:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;int sharedsv_array_mg_CLEAR(PerlInterpreter*, SV*, MAGIC*)&acirc;&#128;&#153;:<br/>shared.xs:1086:5: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void Perl_sharedsv_lock(PerlInterpreter*, SV*)&acirc;&#128;&#153;:<br/>shared.xs:1190:63: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_PUSH(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1287:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_UNSHIFT(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1305:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_POP(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1330:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_SHIFT(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1347:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_EXTEND(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1363:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_STORESIZE(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1373:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_EXISTS(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1385:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs:1395:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_FIRSTKEY(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1411:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared__tie_NEXTKEY(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1439:9: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>shared.xs: In function &acirc;&#128;&#152;void XS_threads__shared_bless(PerlInterpreter*, CV*)&acirc;&#128;&#153;:<br/>shared.xs:1699:13: warning: deprecated conversion from string constant to &acirc;&#128;&#152;char*&acirc;&#128;&#153; [-Wwrite-strings]<br/>threads.xs: In function &acirc;&#128;&#152;ithread* S_ithread_create(PerlInterpreter*, SV*, IV, int, int, int, int)&acirc;&#128;&#153;:<br/>threads.xs:714:83: warning: ignoring return value of &acirc;&#128;&#152;ssize_t write(int, const void*, size_t)&acirc;&#128;&#153;, declared with attribute warn_unused_result [-Wunused-result]<br/>-- <br/>Report by Test::Smoke v1.53 build 1374 running on perl 5.14.2<br/>(Reporter v0.050 / Smoker v0.045)<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202248.html Sat, 25 May 2013 14:01:02 +0000 Smoke [blead] v5.19.0-214-g181d2a7 FAIL(F) linux 3.5.0-24-generic [debian] (x86_64/8 cpu) {blead_clang_quick} by George Greer Smoke logs available at http://m-l.org/~perl/smoke/perl/linux/blead_clang_quick/log181d2a7c6b5c41b580bc3ad1952713a0badcd9ad.log.gz<br/><br/>Automated smoke report for 5.19.1 patch 181d2a7c6b5c41b580bc3ad1952713a0badcd9ad v5.19.0-214-g181d2a7<br/>zwei: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz (GenuineIntel 2668MHz) (x86_64/8 cpu)<br/> on linux - 3.5.0-24-generic [debian]<br/> using clang version 4.2.1 Compatible Clang 3.3 (trunk 177842)<br/> smoketime 49 minutes 45 seconds (average 12 minutes 26 seconds)<br/><br/>Summary: FAIL(F)<br/><br/>O = OK F = Failure(s), extended report at the bottom<br/>X = Failure(s) under TEST but not under harness<br/>? = still running or test results not (yet) available<br/>Build failures during: - = unknown or N/A<br/>c = Configure, m = make, M = make (after miniperl), t = make test-prep<br/><br/>v5.19.0-214-g181d2a7 Configuration (common) -Accflags=-DPERL_POISON -Dcc=clang<br/>----------- ---------------------------------------------------------<br/>F F <br/>F F -Duseithreads<br/>| +--------- -DDEBUGGING<br/>+----------- no debugging<br/><br/><br/>Locally applied patches:<br/> SMOKE181d2a7c6b5c41b580bc3ad1952713a0badcd9ad<br/><br/>Testsuite was run only with &#39;harness&#39;<br/><br/>Failures: (common-args) -Accflags=-DPERL_POISON -Dcc=clang<br/>[default] <br/>[default] -DDEBUGGING<br/>[default] -Duseithreads<br/>[default] -DDEBUGGING -Duseithreads<br/>../dist/Tie-File/t/00_version.t.............................FAILED<br/> Non-zero exit status: 1<br/> Bad plan. You planned 1 tests but ran 0.<br/><br/>Compiler messages(gcc):<br/>regcomp.c:10693:20: warning: unused variable &#39;parse_start&#39; [-Wunused-variable]<br/>Call.xs:63:11: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:63:31: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:100:13: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:156:11: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Call.xs:175:14: warning: format specifies type &#39;int&#39; but the argument has type &#39;STRLEN&#39; (aka &#39;unsigned long&#39;) [-Wformat]<br/>Storable.xs:4068:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:4255:10: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:5550:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Storable.xs:5613:2: warning: null passed to a callee which requires a non-null argument [-Wnonnull]<br/>Collate.xs:616:2: warning: expression result unused [-Wunused-value]<br/>Collate.xs:606:2: warning: expression result unused [-Wunused-value]<br/>./a2py.c:64:48: warning: unused parameter &#39;env&#39; [-Wunused-parameter]<br/>-- <br/>Report by Test::Smoke v1.53 build 1374 running on perl 5.14.2<br/>(Reporter v0.050 / Smoker v0.045)<br/><br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202247.html Sat, 25 May 2013 13:59:09 +0000 Build failed in Jenkins: perl5-threaded #2039 by dennis+p5p-jenkins See &lt;http://perl5.git.perl.org:8080/job/perl5-threaded/2039/changes&gt;<br/><br/>Changes:<br/><br/>[jkeenan] typo fix for ebcdic pod<br/><br/>[jkeenan] Correction recommended by Brad Gilbert++.<br/><br/>[jkeenan] typo fix for reapi pod<br/><br/>[jkeenan] typo fixes for recharclass pod<br/><br/>[jkeenan] typo fix for reref pod<br/><br/>[jkeenan] typo fix for unicode pod<br/><br/>[jkeenan] typo fixes for uniintro pod<br/><br/>[jkeenan] typo fix for vms pod<br/><br/>[jkeenan] typo fixes for diag changed use of initialise to be consistent with other uses of initialize<br/><br/>------------------------------------------<br/>[...truncated 11105 lines...]<br/>../ext/re/t/re.t .................................................. ok<br/>../ext/Pod-Html/t/htmldir4.t ...................................... ok<br/>../ext/re/t/re_funcs.t ............................................ ok<br/>../ext/XS-APItest/t/call_checker.t ................................ ok<br/>../ext/re/t/re_funcs_u.t .......................................... ok<br/>../ext/Pod-Html/t/htmldir5.t ...................................... ok<br/>../ext/XS-APItest/t/caller.t ...................................... ok<br/>../ext/Pod-Html/t/htmlescp.t ...................................... ok<br/>../ext/XS-APItest/t/callregexec.t ................................. ok<br/>../ext/re/t/reflags.t ............................................. ok<br/>../ext/XS-APItest/t/check_warnings.t .............................. ok<br/>../ext/XS-APItest/t/cleanup.t ..................................... ok<br/>../ext/Pod-Html/t/htmllink.t ...................................... ok<br/>../ext/re/t/regop.t ............................................... ok<br/>../ext/Pod-Html/t/htmlview.t ...................................... ok<br/>../lib/AnyDBM_File.t .............................................. ok<br/>../ext/XS-APItest/t/clone-with-stack.t ............................ ok<br/>../ext/XS-APItest/t/cophh.t ....................................... ok<br/>../ext/Pod-Html/t/poderr.t ........................................ ok<br/>../ext/XS-APItest/t/coplabel.t .................................... ok<br/>../ext/POSIX/t/sigset.t ........................................... ok<br/>../ext/Pod-Html/t/podnoerr.t ...................................... ok<br/>../ext/XS-APItest/t/copstash.t .................................... ok<br/>../ext/XS-APItest/t/copyhints.t ................................... ok<br/>../ext/XS-APItest/t/customop.t .................................... ok<br/>../ext/XS-APItest/t/eval-filter.t ................................. ok<br/>../ext/POSIX/t/sysconf.t .......................................... ok<br/>../ext/XS-APItest/t/exception.t ................................... ok<br/>../lib/Class/Struct.t ............................................. ok<br/>../ext/POSIX/t/taint.t ............................................ ok<br/>../ext/XS-APItest/t/fetch_pad_names.t ............................. ok<br/>../ext/XS-APItest/t/gotosub.t ..................................... ok<br/>../lib/Config.t ................................................... ok<br/>../cpan/Module-Build/t/tilde.t .................................... ok<br/>../lib/Config/Extensions.t ........................................ ok<br/>../lib/DB.t ....................................................... ok<br/>../lib/DBM_Filter/t/01error.t ..................................... ok<br/>../lib/DBM_Filter/t/02core.t ...................................... ok<br/>../lib/DBM_Filter/t/compress.t .................................... ok<br/>../lib/DBM_Filter/t/encode.t ...................................... ok<br/>../lib/DBM_Filter/t/int32.t ....................................... ok<br/>../lib/DBM_Filter/t/null.t ........................................ ok<br/>../ext/POSIX/t/termios.t .......................................... ok<br/>../lib/DBM_Filter/t/utf8.t ........................................ ok<br/>../lib/DirHandle.t ................................................ ok<br/>../ext/POSIX/t/time.t ............................................. ok<br/>../lib/English.t .................................................. ok<br/>../lib/Exporter.t ................................................. ok<br/>../ext/POSIX/t/unimplemented.t .................................... ok<br/>../dist/Math-BigInt/t/sub_mbi.t ................................... ok<br/>../cpan/Module-Build/t/use_tap_harness.t .......................... ok<br/>../lib/ExtUtils/t/Embed.t ......................................... ok<br/>../cpan/Module-Build/t/versions.t ................................. ok<br/>../lib/File/Basename.t ............................................ ok<br/>../lib/File/Compare.t ............................................. ok<br/>../ext/POSIX/t/usage.t ............................................ ok<br/>../cpan/Module-Build/t/write_default_maniskip.t ................... ok<br/>../dist/Math-BigInt/t/sub_mif.t ................................... ok<br/>../lib/File/Copy.t ................................................ ok<br/>../lib/File/stat-7896.t ........................................... ok<br/>../dist/Math-BigInt/t/trap.t ...................................... ok<br/>../cpan/IO-Compress/t/106prime-bzip2.t ............................ ok<br/>../dist/Math-BigInt/t/upgrade.t ................................... ok<br/>../dist/Math-BigInt/t/upgrade2.t .................................. ok<br/>../ext/POSIX/t/waitpid.t .......................................... ok<br/>../dist/Math-BigInt/t/upgradef.t .................................. ok<br/>../ext/POSIX/t/wrappers.t ......................................... ok<br/>../dist/Math-BigInt/t/use.t ....................................... ok<br/>../dist/Math-BigInt/t/use_lib1.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib2.t .................................. ok<br/>../dist/Math-BigInt/t/use_lib3.t .................................. ok<br/>../lib/File/Find/t/find.t ......................................... ok<br/>../dist/Math-BigInt/t/use_lib4.t .................................. ok<br/>../dist/Math-BigInt/t/use_mbfw.t .................................. ok<br/>../lib/File/Find/t/taint.t ........................................ ok<br/>../lib/FileHandle.t ............................................... ok<br/>../lib/FindBin.t .................................................. ok<br/>../lib/Getopt/Std.t ............................................... ok<br/>../lib/Internals.t ................................................ ok<br/>../lib/Net/hostent.t .............................................. ok<br/>../lib/Net/netent.t ............................................... skipped: no loopback net<br/>../lib/Net/protoent.t ............................................. ok<br/>../lib/Net/servent.t .............................................. ok<br/>../lib/Pod/t/InputObjects.t ....................................... ok<br/>../lib/Pod/t/Select.t ............................................. ok<br/>../lib/Pod/t/Usage.t .............................................. ok<br/>../lib/Pod/t/utils.t .............................................. ok<br/>../lib/SelectSaver.t .............................................. ok<br/>../lib/Symbol.t ................................................... ok<br/>../cpan/Module-Build/t/xs.t ....................................... ok<br/>../lib/Tie/ExtraHash.t ............................................ ok<br/>../lib/Tie/Hash.t ................................................. ok<br/>../lib/Tie/Scalar.t ............................................... ok<br/>../lib/Tie/SubstrHash.t ........................................... ok<br/>../lib/Tie/Array/push.t ........................................... ok<br/>../lib/Tie/Array/splice.t ......................................... ok<br/>../cpan/IO-Compress/t/106prime-deflate.t .......................... ok<br/>../dist/Math-BigInt/t/with_sub.t .................................. ok<br/>../lib/Tie/Handle/stdhandle.t ..................................... ok<br/>../lib/Tie/Handle/stdhandle_from_handle.t ......................... ok<br/>../lib/Tie/Array/std.t ............................................ ok<br/>../lib/Tie/Array/stdpush.t ........................................ ok<br/>../lib/Time/gmtime.t .............................................. ok<br/>../lib/Time/localtime.t ........................................... ok<br/>../lib/Thread.t ................................................... ok<br/>../lib/User/grent.t ............................................... ok<br/>../lib/blib.t ..................................................... ok<br/>../lib/User/pwent.t ............................................... ok<br/>../lib/bytes.t .................................................... ok<br/>../dist/IO/t/io_utf8.t ............................................ ok<br/>../dist/IO/t/io_utf8argv.t ........................................ ok<br/>../lib/File/stat.t ................................................ ok<br/>../dist/IO/t/io_xs.t .............................................. ok<br/>../lib/dumpvar.t .................................................. ok<br/>../lib/Benchmark.t ................................................ ok<br/>../lib/diagnostics.t .............................................. ok<br/>../lib/filetest.t ................................................. ok<br/>../lib/h2ph.t ..................................................... ok<br/>../lib/integer.t .................................................. ok<br/>../lib/less.t ..................................................... ok<br/>../lib/h2xs.t ..................................................... ok<br/>../lib/open.t ..................................................... ok<br/>../ext/XS-APItest/t/grok.t ........................................ ok<br/>../ext/XS-APItest/t/gv_autoload4.t ................................ ok<br/>../ext/XS-APItest/t/gv_fetchmeth.t ................................ ok<br/>../cpan/IO-Compress/t/106prime-gzip.t ............................. ok<br/>../lib/feature.t .................................................. ok<br/>../ext/XS-APItest/t/gv_fetchmeth_autoload.t ....................... ok<br/>../ext/XS-APItest/t/gv_fetchmethod_flags.t ........................ ok<br/>../lib/overload64.t ............................................... ok<br/>../ext/XS-APItest/t/gv_init.t ..................................... ok<br/>../lib/overloading.t .............................................. ok<br/>../lib/locale.t ................................................... ok<br/>../lib/sigtrap.t .................................................. ok<br/>../lib/sort.t ..................................................... ok<br/>../cpan/IO-Compress/t/106prime-rawdeflate.t ....................... ok<br/>../lib/overload.t ................................................. ok<br/>../lib/subs.t ..................................................... ok<br/>../lib/utf8.t ..................................................... ok<br/>../lib/vars.t ..................................................... ok<br/>../lib/vars_carp.t ................................................ ok<br/>../lib/version/t/01base.t ......................................... ok<br/>../lib/version/t/02derived.t ...................................... ok<br/>../lib/version/t/03require.t ...................................... ok<br/>../lib/version/t/04strict_lax.t ................................... ok<br/>../lib/version/t/05sigdie.t ....................................... ok<br/>../lib/version/t/06noop.t ......................................... ok<br/>../lib/version/t/07locale.t ....................................... ok<br/>../lib/strict.t ................................................... ok<br/>../lib/vmsish.t ................................................... ok<br/>../lib/Unicode/UCD.t .............................................. ok<br/>../cpan/IO-Compress/t/106prime-zip.t .............................. ok<br/>x2p/s2p.t ......................................................... ok<br/>../cpan/IO-Compress/t/107multi-bzip2.t ............................ ok<br/>../lib/perl5db.t .................................................. ok<br/>../cpan/IO-Compress/t/107multi-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/107multi-gzip.t ............................. ok<br/>../lib/charnames.t ................................................ ok<br/>../lib/feature/unicode_strings.t .................................. ok<br/>../cpan/IO-Compress/t/107multi-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/107multi-zip.t .............................. ok<br/>../cpan/IO-Compress/t/108anyunc-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/108anyunc-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/108anyunc-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/108anyunc-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/108anyunc-transparent.t ..................... ok<br/>../cpan/IO-Compress/t/108anyunc-zip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/109merge-gzip.t ............................. ok<br/>../cpan/IO-Compress/t/109merge-rawdeflate.t ....................... ok<br/>../cpan/IO-Compress/t/109merge-zip.t .............................. skipped: not implemented yet<br/>../cpan/IO-Compress/t/110encode-bzip2.t ........................... ok<br/>../cpan/IO-Compress/t/110encode-deflate.t ......................... ok<br/>../cpan/IO-Compress/t/110encode-gzip.t ............................ ok<br/>../cpan/IO-Compress/t/110encode-rawdeflate.t ...................... ok<br/>../cpan/IO-Compress/t/110encode-zip.t ............................. ok<br/>../cpan/IO-Compress/t/111const-deflate.t .......................... ok<br/>../cpan/IO-Compress/t/999pod.t .................................... skipped: Test::Pod 1.00 required for testing POD<br/>../cpan/IO-Compress/t/cz-01version.t .............................. ok<br/>../cpan/IO-Compress/t/cz-03zlib-v1.t .............................. ok<br/>../cpan/IO-Compress/t/cz-05examples.t ............................. ok<br/>../cpan/IO-Compress/t/cz-06gzsetp.t ............................... ok<br/>../cpan/IO-Compress/t/cz-08encoding.t ............................. ok<br/>../cpan/IO-Compress/t/cz-14gzopen.t ............................... ok<br/>../cpan/IO-Compress/t/globmapper.t ................................ ok<br/>../ext/XS-APItest/t/handy.t ....................................... ok<br/>../ext/XS-APItest/t/hash.t ........................................ ok<br/>../ext/XS-APItest/t/keyword_multiline.t ........................... ok<br/>../ext/XS-APItest/t/keyword_plugin.t .............................. ok<br/>../ext/XS-APItest/t/labelconst.t .................................. ok<br/>../ext/XS-APItest/t/lexsub.t ...................................... ok<br/>../ext/XS-APItest/t/loopblock.t ................................... ok<br/>../ext/XS-APItest/t/looprest.t .................................... ok<br/>../ext/XS-APItest/t/lvalue.t ...................................... ok<br/>../ext/XS-APItest/t/magic.t ....................................... ok<br/>../ext/XS-APItest/t/magic_chain.t ................................. ok<br/>../ext/XS-APItest/t/mro.t ......................................... ok<br/>../ext/XS-APItest/t/multicall.t ................................... ok<br/>../ext/XS-APItest/t/my_cxt.t ...................................... ok<br/>../ext/XS-APItest/t/my_exit.t ..................................... ok<br/>../ext/XS-APItest/t/newCONSTSUB.t ................................. ok<br/>../ext/XS-APItest/t/op.t .......................................... ok<br/>../ext/XS-APItest/t/op_contextualize.t ............................ ok<br/>../ext/XS-APItest/t/op_list.t ..................................... ok<br/>../ext/XS-APItest/t/overload.t .................................... ok<br/>../ext/XS-APItest/t/pad_scalar.t .................................. ok<br/>../ext/XS-APItest/t/peep.t ........................................ ok<br/>../ext/XS-APItest/t/pmflag.t ...................................... ok<br/>../ext/XS-APItest/t/postinc.t ..................................... ok<br/>../ext/XS-APItest/t/printf.t ...................................... ok<br/>../ext/XS-APItest/t/ptr_table.t ................................... ok<br/>../ext/XS-APItest/t/push.t ........................................ ok<br/>../ext/XS-APItest/t/refs.t ........................................ ok<br/>../ext/XS-APItest/t/rmagical.t .................................... ok<br/>../ext/XS-APItest/t/rv2cv_op_cv.t ................................. ok<br/>../ext/XS-APItest/t/savehints.t ................................... ok<br/>../ext/XS-APItest/t/scopelessblock.t .............................. ok<br/>../ext/XS-APItest/t/sort.t ........................................ ok<br/>../ext/XS-APItest/t/stmtasexpr.t .................................. ok<br/>../ext/XS-APItest/t/stmtsasexpr.t ................................. ok<br/>../ext/XS-APItest/t/stuff_modify_bug.t ............................ ok<br/>../ext/XS-APItest/t/stuff_svcur_bug.t ............................. ok<br/>../ext/XS-APItest/t/sviscow.t ..................................... ok<br/>../ext/XS-APItest/t/svpeek.t ...................................... ok<br/>../ext/XS-APItest/t/svpv.t ........................................ ok<br/>../ext/XS-APItest/t/svpv_magic.t .................................. ok<br/>../ext/XS-APItest/t/svsetsv.t ..................................... ok<br/>../ext/XS-APItest/t/swaplabel.t ................................... ok<br/>../ext/XS-APItest/t/swaptwostmts.t ................................ ok<br/>../ext/XS-APItest/t/sym-hook.t .................................... ok<br/>../ext/XS-APItest/t/temp_lv_sub.t ................................. ok<br/>../ext/XS-APItest/t/underscore_length.t ........................... ok<br/>../ext/XS-APItest/t/utf16_to_utf8.t ............................... ok<br/>../ext/XS-APItest/t/utf8.t ........................................ ok<br/>../ext/XS-APItest/t/whichsig.t .................................... ok<br/>../ext/XS-APItest/t/xs_special_subs.t ............................. ok<br/>../ext/XS-APItest/t/xs_special_subs_require.t ..................... ok<br/>../ext/XS-APItest/t/xsub_h.t ...................................... ok<br/>../lib/warnings.t ................................................. ok<br/><br/>Test Summary Report<br/>-------------------<br/>../dist/Tie-File/t/00_version.t (Wstat: 256 Tests: 0 Failed: 0)<br/> Non-zero exit status: 1<br/> Parse errors: Bad plan. You planned 1 tests but ran 0.<br/>Files=2309, Tests=688675, 547 wallclock secs (145.34 usr 118.72 sys + 949.59 cusr 326.66 csys = 1540.31 CPU)<br/>Result: FAIL<br/>make: *** [test_harness] Error 1<br/>Build step &#39;Execute shell&#39; marked build as failure<br/> http://www.nntp.perl.org/group/perl.perl5.porters/2013/05/msg202246.html Sat, 25 May 2013 13:57:00 +0000