perl.cpan.testers.discuss http://www.nntp.perl.org/group/perl.cpan.testers.discuss/ ... Copyright 1998-2013 perl.org Thu, 20 Jun 2013 01:08:33 +0000 ask@perl.org Re: CPAN Testers AUTOMATED_TESTING config by David Golden The Lancaster Consensus from this year&#39;s QA hackathon has updated the<br/>desired semantics:<br/>http://www.dagolden.com/index.php/2098/the-annotated-lancaster-consensus/<br/><br/>Specifically, AUTOMATED_TESTING is now intended to distinguish only<br/>between things running for &quot;smoke testing&quot; versus things running as<br/>part of module installation (or other, manually testing). It no<br/>longer means &quot;without recourse to a human operator&quot; as it did after<br/>the Oslo Consensus. That aspect is now covered by the new<br/>&quot;NONINTERACTIVE_TESTING&quot; environment variable.<br/><br/>In your case -- automated testing with manual review of results --<br/>both should be set, because when the tests run, it is both smoking and<br/>non-interactive. :-)<br/><br/>Your manual review is awesome -- I wish more smoke testers did that --<br/>but it doesn&#39;t change the environment we want to present to<br/>distributions, so they can decide to opt-in or out of some or all<br/>tests depending on circumstances surrounding the test.<br/><br/>David<br/><br/><br/><br/><br/>On Thu, Jun 13, 2013 at 5:19 PM, Slaven Rezic &lt;slaven@rezic.de&gt; wrote:<br/>&gt; Karen Etheridge &lt;perl@froods.org&gt; writes:<br/>&gt;<br/>&gt;&gt; Hi Slaven,<br/>&gt;&gt;<br/>&gt;&gt; recently I received a number of failing test reports from you, for<br/>&gt;&gt; Plack-App-BeanstalkConsole-0.004:<br/>&gt;&gt;<br/>&gt;&gt; http://www.cpantesters.org/cpan/report/27614552-c707-11e2-be51-ac14a65f1290<br/>&gt;&gt; http://www.cpantesters.org/cpan/report/bc294a00-c706-11e2-b547-d1b9f05bb613<br/>&gt;&gt; http://www.cpantesters.org/cpan/report/976876e6-c706-11e2-b45e-827567d01fb8<br/>&gt;&gt; http://www.cpantesters.org/cpan/report/089d0ca6-c706-11e2-b644-eee7e73c5bf2<br/>&gt;&gt; http://www.cpantesters.org/cpan/report/6dd3a9b2-c707-11e2-87dd-f08dfdc235a3<br/>&gt;&gt;<br/>&gt;&gt; However, there should be *no testing at all* done for this distribution,<br/>&gt;&gt; (save any reports that are sent manually via cpanm-reporter), because the<br/>&gt;&gt; first line of Makefile.PL is:<br/>&gt;&gt;<br/>&gt;&gt; exit 0 if $ENV{AUTOMATED_TESTING};<br/>&gt;&gt;<br/>&gt;&gt; This is because this distribution requires the presence of a php<br/>&gt;&gt; executable, and also the Makefile.PL downloads a large file from github --<br/>&gt;&gt; so to respect github&#39;s servers, I&#39;d rather this happen only when the module<br/>&gt;&gt; is actually going to be used.<br/>&gt;&gt;<br/>&gt;&gt; Automated CPAN testing is supposed to set the AUTOMATED_TESTING variable:<br/>&gt;&gt;<br/>&gt;&gt; http://wiki.cpantesters.org/wiki/CPANAuthorNotes<br/>&gt;&gt;<br/>&gt;&gt; &quot;Can I tell if my module is being tested by an automated client (a.k.a. &#39;smoker&#39;)?&quot;<br/>&gt;&gt;<br/>&gt;&gt; Automated smoke testers should set $ENV{AUTOMATED_TESTING} to a true value. This allows authors to skip certain tests (or include certain tests) when the results are not being monitored by a human being.<br/>&gt;&gt;<br/>&gt;&gt; One could even go so far as to halt building and testing a distribution under automated testing by exiting with zero at the top of the Makefile.PL or Build.PL file:<br/>&gt;&gt;<br/>&gt;&gt; exit 0 if $ENV{AUTOMATED_TESTING};<br/>&gt;&gt;<br/>&gt;&gt;<br/>&gt;&gt; Please could you set AUTOMATED_TESTING in your smokers? thank you!<br/>&gt;&gt;<br/>&gt;<br/>&gt; Actually, my smoker does not fail under this sentence: &quot;... are not<br/>&gt; being monitored by a human being&quot;. I look into every FAIL report before<br/>&gt; sending. Really.<br/>&gt;<br/>&gt; But I can setup a special rule in 01.DISABLED.yml for your distribution.<br/>&gt;<br/>&gt; Regards,<br/>&gt; Slaven<br/>&gt;<br/>&gt; --<br/>&gt; Slaven Rezic - slaven &lt;at&gt; rezic &lt;dot&gt; de<br/>&gt; BBBike - route planner for cyclists in Berlin<br/>&gt; WWW version: http://www.bbbike.de<br/>&gt; Perl/Tk version for Unix and Windows: http://bbbike.sourceforge.net<br/><br/><br/><br/>--<br/>David Golden &lt;xdg@xdg.me&gt;<br/>Take back your inbox! &rarr; http://www.bunchmail.com/<br/>Twitter/IRC: @xdg<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3159.html Thu, 13 Jun 2013 23:13:37 +0000 Re: CPAN Testers AUTOMATED_TESTING config by Slaven Rezic Karen Etheridge &lt;perl@froods.org&gt; writes:<br/><br/>&gt; Hi Slaven,<br/>&gt;<br/>&gt; recently I received a number of failing test reports from you, for<br/>&gt; Plack-App-BeanstalkConsole-0.004:<br/>&gt;<br/>&gt; http://www.cpantesters.org/cpan/report/27614552-c707-11e2-be51-ac14a65f1290<br/>&gt; http://www.cpantesters.org/cpan/report/bc294a00-c706-11e2-b547-d1b9f05bb613<br/>&gt; http://www.cpantesters.org/cpan/report/976876e6-c706-11e2-b45e-827567d01fb8<br/>&gt; http://www.cpantesters.org/cpan/report/089d0ca6-c706-11e2-b644-eee7e73c5bf2<br/>&gt; http://www.cpantesters.org/cpan/report/6dd3a9b2-c707-11e2-87dd-f08dfdc235a3<br/>&gt;<br/>&gt; However, there should be *no testing at all* done for this distribution,<br/>&gt; (save any reports that are sent manually via cpanm-reporter), because the<br/>&gt; first line of Makefile.PL is:<br/>&gt;<br/>&gt; exit 0 if $ENV{AUTOMATED_TESTING};<br/>&gt;<br/>&gt; This is because this distribution requires the presence of a php<br/>&gt; executable, and also the Makefile.PL downloads a large file from github --<br/>&gt; so to respect github&#39;s servers, I&#39;d rather this happen only when the module<br/>&gt; is actually going to be used.<br/>&gt;<br/>&gt; Automated CPAN testing is supposed to set the AUTOMATED_TESTING variable:<br/>&gt;<br/>&gt; http://wiki.cpantesters.org/wiki/CPANAuthorNotes<br/>&gt;<br/>&gt; &quot;Can I tell if my module is being tested by an automated client (a.k.a. &#39;smoker&#39;)?&quot;<br/>&gt;<br/>&gt; Automated smoke testers should set $ENV{AUTOMATED_TESTING} to a true value. This allows authors to skip certain tests (or include certain tests) when the results are not being monitored by a human being.<br/>&gt;<br/>&gt; One could even go so far as to halt building and testing a distribution under automated testing by exiting with zero at the top of the Makefile.PL or Build.PL file:<br/>&gt;<br/>&gt; exit 0 if $ENV{AUTOMATED_TESTING};<br/>&gt;<br/>&gt;<br/>&gt; Please could you set AUTOMATED_TESTING in your smokers? thank you!<br/>&gt;<br/><br/>Actually, my smoker does not fail under this sentence: &quot;... are not<br/>being monitored by a human being&quot;. I look into every FAIL report before<br/>sending. Really.<br/><br/>But I can setup a special rule in 01.DISABLED.yml for your distribution.<br/><br/>Regards,<br/> Slaven<br/><br/>-- <br/>Slaven Rezic - slaven &lt;at&gt; rezic &lt;dot&gt; de<br/> BBBike - route planner for cyclists in Berlin<br/> WWW version: http://www.bbbike.de<br/> Perl/Tk version for Unix and Windows: http://bbbike.sourceforge.net<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3158.html Thu, 13 Jun 2013 21:22:05 +0000 Re: Broken Windows CPAN Tester - http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb by Michael G. Schwern On 6/2/13 12:45 AM, Shlomi Fish wrote:<br/>&gt; OK, sorry about all that - I will no longer discuss such matters here. Sorry<br/>&gt; for reducing the http://en.wikipedia.org/wiki/Signal-to-noise_ratio .<br/><br/>Thank you.<br/><br/><br/>&gt;&gt; Then, if you really think the smoker is broken, you can report it NICELY<br/>&gt;&gt; and without forwarding your frustrations to the volunteer who runs the<br/>&gt;&gt; machine and without expecting them to fix your problem.<br/>&gt; <br/>&gt; Yes, you are right. Sorry about that.<br/><br/>Good, thank you.<br/><br/><br/>&gt; OK, I fixed that in my code (converted to use File::Spec/etc.) and it runs fine<br/>&gt; on my Windows XP 32-bit VM, but I&#39;m still getting this test failure:<br/><br/>FWIW I get the same thing on Windows 7 64-bit. It&#39;s probably an XP vs<br/>Win7 issue.<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3157.html Thu, 06 Jun 2013 18:26:24 +0000 I've set up a cpan-testers organization on github by David Golden I&#39;ve set up a cpan-testers organization on Github and will start<br/>transferring my CT related repos there.<br/><br/>Anyone who would like to do the same should let me know your github ID<br/>and I can add you as an admin, which will give you the ability to<br/>transfer in your repository(ies).<br/><br/>Anyone interested just in contributing code to repos should let me<br/>know your github ID and I&#39;ll add you as a member with push/pull<br/>rights.<br/><br/>Regards,<br/>David<br/><br/>--<br/>David Golden &lt;xdg@xdg.me&gt;<br/>Take back your inbox! &rarr; http://www.bunchmail.com/<br/>Twitter/IRC: @xdg<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3156.html Thu, 06 Jun 2013 14:35:57 +0000 CPAN Testers AUTOMATED_TESTING config by Karen Etheridge <br/>Hi Slaven,<br/><br/>recently I received a number of failing test reports from you, for<br/>Plack-App-BeanstalkConsole-0.004:<br/><br/>http://www.cpantesters.org/cpan/report/27614552-c707-11e2-be51-ac14a65f1290<br/>http://www.cpantesters.org/cpan/report/bc294a00-c706-11e2-b547-d1b9f05bb613<br/>http://www.cpantesters.org/cpan/report/976876e6-c706-11e2-b45e-827567d01fb8<br/>http://www.cpantesters.org/cpan/report/089d0ca6-c706-11e2-b644-eee7e73c5bf2<br/>http://www.cpantesters.org/cpan/report/6dd3a9b2-c707-11e2-87dd-f08dfdc235a3<br/><br/>However, there should be *no testing at all* done for this distribution,<br/>(save any reports that are sent manually via cpanm-reporter), because the<br/>first line of Makefile.PL is:<br/><br/>exit 0 if $ENV{AUTOMATED_TESTING};<br/><br/>This is because this distribution requires the presence of a php<br/>executable, and also the Makefile.PL downloads a large file from github --<br/>so to respect github&#39;s servers, I&#39;d rather this happen only when the module<br/>is actually going to be used.<br/><br/>Automated CPAN testing is supposed to set the AUTOMATED_TESTING variable:<br/><br/>http://wiki.cpantesters.org/wiki/CPANAuthorNotes<br/><br/> &quot;Can I tell if my module is being tested by an automated client (a.k.a. &#39;smoker&#39;)?&quot;<br/><br/> Automated smoke testers should set $ENV{AUTOMATED_TESTING} to a true value. This allows authors to skip certain tests (or include certain tests) when the results are not being monitored by a human being.<br/><br/> One could even go so far as to halt building and testing a distribution under automated testing by exiting with zero at the top of the Makefile.PL or Build.PL file:<br/><br/> exit 0 if $ENV{AUTOMATED_TESTING};<br/><br/><br/>Please could you set AUTOMATED_TESTING in your smokers? thank you!<br/><br/>Karen Etheridge<br/>ether@cpan.org<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3155.html Tue, 04 Jun 2013 00:31:32 +0000 Re: Broken Windows CPAN Tester -http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb by Shlomi Fish Hi Michael,<br/><br/>On Wed, 29 May 2013 14:14:08 -0700<br/>&quot;Michael G. Schwern&quot; &lt;schwern@pobox.com&gt; wrote:<br/>&gt; <br/>&gt; &gt; How hard should it be to get temporary directories/files to work on Windows?<br/>&gt; <br/>&gt; About as hard as File::Spec-&gt;catfile($temp_dir, &quot;fort.yaml&quot;). Don&#39;t get<br/>&gt; sloppy with file paths.<br/>&gt; <br/>&gt; Shlomi, I&#39;ve been back on this list for just a few weeks, but I&#39;m pretty<br/>&gt; sure this is not the &quot;fix my module on your OS&quot; mailing list or the &quot;it<br/>&gt; can&#39;t be my code, your smoker is broken&quot; list. This is a list to<br/>&gt; discuss the running of CPAN testing machines.<br/><br/>OK, sorry about all that - I will no longer discuss such matters here. Sorry<br/>for reducing the http://en.wikipedia.org/wiki/Signal-to-noise_ratio .<br/><br/>&gt; <br/>&gt; I know getting failures is frustrating, this does not allow you being<br/>&gt; rude to volunteers by blaming their machines for your bugs and then<br/>&gt; expecting this list to fix your portability mistakes without so much as<br/>&gt; a &quot;sorry&quot;. I realize there may be a language/culture barrier, but<br/>&gt; apologizing when you&#39;re wrong is pretty basic.<br/>&gt; <br/>&gt; 1) Assuming the smoker is broken is the LAST resort.<br/>&gt; <br/>&gt; 2) Assuming the OS is broken/stupid is also the LAST resort.<br/>&gt; <br/>&gt; 3) If you do think the smoker is broken, be nice about reporting it. Do<br/>&gt; not dump your frustrations on the list or the volunteer.<br/>&gt; <br/>&gt; 4) When it turns out the bug is in your code, apologize for using<br/>&gt; people&#39;s time.<br/>&gt; <br/>&gt; 5) Do not use this mailing list as your personal portability fix queue.<br/>&gt; <br/>&gt; Install some VMs and start testing your stuff. VirtualBox is free and<br/>&gt; runs on just about everything. Keep installs of things like BSD and<br/>&gt; Windows around. Use those installs as your debugging tool before you<br/>&gt; assume the smoker is broken or come here for help.<br/><br/>Sure, I can do that. I already have a Windows VM and a FreeBSD VM (though the<br/>latter ran out of space).<br/><br/>&gt; <br/>&gt; Then, if you really think the smoker is broken, you can report it NICELY<br/>&gt; and without forwarding your frustrations to the volunteer who runs the<br/>&gt; machine and without expecting them to fix your problem.<br/><br/>Yes, you are right. Sorry about that.<br/><br/>&gt; <br/>&gt; Schwern<br/><br/><br/>&gt; On 5/29/13 10:24 AM, Shlomi Fish wrote:<br/>&gt; &gt; # Testing XML::Grammar::Fortune::Synd 0.0208, Perl 5.014002,<br/>&gt; &gt; C:\strawberry\perl\bin\perl.exe<br/>&gt; &gt; t\00-load.t ............... ok<br/>&gt; &gt; t\01-run.t ................ ok<br/>&gt; &gt; Can&#39;t open &#39;C:\Users\SOLIMA~1\AppData\Local\Temp\ZMHh2bzmTs/fort.yaml&#39; for<br/>&gt; <br/>&gt; Note the forward slash. The test contains hard coded forward slashes.<br/>&gt; Sometimes Windows will handle mixed forward slashes, sometimes not.<br/>&gt; That would be the first thing I would fix.<br/><br/>OK, I fixed that in my code (converted to use File::Spec/etc.) and it runs fine<br/>on my Windows XP 32-bit VM, but I&#39;m still getting this test failure:<br/><br/>http://www.cpantesters.org/cpan/report/fcf27a08-7363-1014-acf5-ecb56b2677eb<br/><br/>But this is off-topic here.<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>List of Networking Clients - http://shlom.in/net-clients<br/><br/>Jessica on the phone: Sel, you&rsquo;re getting strange lately, but you are becoming<br/>more amusing in the process.<br/> &mdash; http://www.shlomifish.org/humour/Selina-Mandrake/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/06/msg3154.html Sun, 02 Jun 2013 05:45:25 +0000 Re: Help dealing with DSL-Tiny failure by David Cantrell On Fri, May 31, 2013 at 08:52:10AM -0700, George Hartzell wrote:<br/><br/>&gt; I have a recently uploaded module that&#39;s failing on one particular<br/>&gt; Perl/OS version:<br/>&gt; <br/>&gt; FAIL DSL-Tiny-0.001 v5.14.2 GNU/Linux<br/>&gt; <br/>&gt; I&#39;m not sure how to fix the problem. Is there a way to get verbose<br/>&gt; output from a test run on the failing platform? Is there a way for me<br/>&gt; to log in and play a bit?<br/><br/>http://wiki.cpantesters.org/wiki/ContactSender<br/><br/>-- <br/>David Cantrell | Reality Engineer, Ministry of Information<br/><br/> Safety tip: never strap firearms to a hamster<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3153.html Fri, 31 May 2013 16:39:14 +0000 Help dealing with DSL-Tiny failure by George Hartzell <br/>Hi Testers,<br/><br/>I have a recently uploaded module that&#39;s failing on one particular<br/>Perl/OS version:<br/><br/> FAIL DSL-Tiny-0.001 v5.14.2 GNU/Linux<br/><br/>Based on what I can see at cpantesters it seems to be passing<br/>everywhere else.<br/><br/>I&#39;m currently only running OS X systems, perlbrew can&#39;t seem to build<br/>5.14.2 but I can&#39;t replicate the problem on 5.14.3 or 5.16.2 (my dev<br/>system).<br/><br/>I&#39;m not sure how to fix the problem. Is there a way to get verbose<br/>output from a test run on the failing platform? Is there a way for me<br/>to log in and play a bit?<br/><br/>Thanks,<br/><br/>g.<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3152.html Fri, 31 May 2013 16:16:10 +0000 Re: Broken Windows CPAN Tester - http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb by Michael G. Schwern On 5/29/13 10:24 AM, Shlomi Fish wrote:<br/>&gt; # Testing XML::Grammar::Fortune::Synd 0.0208, Perl 5.014002,<br/>&gt; C:\strawberry\perl\bin\perl.exe<br/>&gt; t\00-load.t ............... ok<br/>&gt; t\01-run.t ................ ok<br/>&gt; Can&#39;t open &#39;C:\Users\SOLIMA~1\AppData\Local\Temp\ZMHh2bzmTs/fort.yaml&#39; for<br/><br/>Note the forward slash. The test contains hard coded forward slashes.<br/>Sometimes Windows will handle mixed forward slashes, sometimes not.<br/>That would be the first thing I would fix.<br/><br/><br/>&gt; How hard should it be to get temporary directories/files to work on Windows?<br/><br/>About as hard as File::Spec-&gt;catfile($temp_dir, &quot;fort.yaml&quot;). Don&#39;t get<br/>sloppy with file paths.<br/><br/>Shlomi, I&#39;ve been back on this list for just a few weeks, but I&#39;m pretty<br/>sure this is not the &quot;fix my module on your OS&quot; mailing list or the &quot;it<br/>can&#39;t be my code, your smoker is broken&quot; list. This is a list to<br/>discuss the running of CPAN testing machines.<br/><br/>I know getting failures is frustrating, this does not allow you being<br/>rude to volunteers by blaming their machines for your bugs and then<br/>expecting this list to fix your portability mistakes without so much as<br/>a &quot;sorry&quot;. I realize there may be a language/culture barrier, but<br/>apologizing when you&#39;re wrong is pretty basic.<br/><br/>1) Assuming the smoker is broken is the LAST resort.<br/><br/>2) Assuming the OS is broken/stupid is also the LAST resort.<br/><br/>3) If you do think the smoker is broken, be nice about reporting it. Do<br/>not dump your frustrations on the list or the volunteer.<br/><br/>4) When it turns out the bug is in your code, apologize for using<br/>people&#39;s time.<br/><br/>5) Do not use this mailing list as your personal portability fix queue.<br/><br/>Install some VMs and start testing your stuff. VirtualBox is free and<br/>runs on just about everything. Keep installs of things like BSD and<br/>Windows around. Use those installs as your debugging tool before you<br/>assume the smoker is broken or come here for help.<br/><br/>Then, if you really think the smoker is broken, you can report it NICELY<br/>and without forwarding your frustrations to the volunteer who runs the<br/>machine and without expecting them to fix your problem.<br/><br/>Schwern<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3151.html Thu, 30 May 2013 15:41:41 +0000 Re: Broken Windows CPAN Tester -http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb by Shlomi Fish Hi David,<br/><br/>sorry for the late response.<br/><br/>On Fri, 24 May 2013 10:07:46 -0400<br/>David Solimano &lt;david@solimano.org&gt; wrote:<br/><br/>&gt; Hello,<br/>&gt; <br/>&gt; I tried running this installation from the CPAN shell and got the same<br/>&gt; result, so I don&#39;t think the smoker is at fault. Is there anything else<br/>&gt; you&#39;d like me to try?<br/><br/>Thanks for the input.<br/><br/>Can anyone tell me why I am getting this error on:<br/><br/>http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb<br/><br/>Reading from it:<br/><br/>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<br/>PROGRAM OUTPUT<br/>------------------------------<br/><br/>Output from &#39;C:\strawberry\perl\bin\perl.exe ./Build test&#39;:<br/><br/># Testing XML::Grammar::Fortune::Synd 0.0208, Perl 5.014002,<br/>C:\strawberry\perl\bin\perl.exe<br/>t\00-load.t ............... ok<br/>t\01-run.t ................ ok<br/>Can&#39;t open &#39;C:\Users\SOLIMA~1\AppData\Local\Temp\ZMHh2bzmTs/fort.yaml&#39; for<br/>output:<br/>Permission denied at<br/>C:\Users\solimanod\AppData\Local\.cpan\build\YAML-LibYAML-0.41-QANBkq/blib/lib/YAML/XS.pm<br/>line 32.<br/><br/># Failed test at t\02-eliminate-old-ids.t line 51.<br/># Looks like you failed 1 test of 2.<br/>t\02-eliminate-old-ids.t .. <br/>Dubious, test returned 1 (wstat 256, 0x100)<br/>Failed 1/2 subtests <br/>t\cpan-changes.t .......... skipped: Test::CPAN::Changes required for this test<br/>t\pod-coverage.t .......... skipped: Test::Pod::Coverage 1.08 required for<br/>testing POD coverage<br/>t\pod.t ................... skipped: Test::Pod 1.22 required for testing POD<br/>t\style-trailing-space.t .. skipped: Test::TrailingSpace required for trailing<br/>space test.<br/><br/>Test Summary Report<br/>-------------------<br/>t\02-eliminate-old-ids.t (Wstat: 256 Tests: 2 Failed: 1)<br/> Failed test: 1<br/> Non-zero exit status: 1<br/>Files=7, Tests=11, 21 wallclock secs ( 0.09 usr + 0.16 sys = 0.25 CPU)<br/>Result: FAIL<br/>Failed 1/7 test programs. 1/11 subtests failed.<br/><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br/><br/>How hard should it be to get temporary directories/files to work on Windows?<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>&gt; <br/>&gt; Thanks,<br/>&gt; David<br/>&gt; <br/>&gt; Date sent: Fri, 24 May 2013 11:04:11 +0300<br/>&gt; From: Shlomi Fish &lt;shlomif@shlomifish.org&gt;<br/>&gt; To: David Solimano &lt;dsolimano@cpan.org&gt;<br/>&gt; Subject: Broken Windows CPAN Tester -<br/>&gt; <br/>&gt; http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb<br/>&gt; <br/>&gt; &gt; Hi David,<br/>&gt; &gt; <br/>&gt; &gt; this CPAN tester is broken -<br/>&gt; &gt; http://www.cpantesters.org/cpan/report/28051c7c-71ca-1014-9ba1-70af6b2677eb <br/>&gt; &gt; <br/>&gt; &gt; Regards,<br/>&gt; &gt; <br/>&gt; &gt; Shlomi Fish<br/>&gt; &gt; <br/>&gt; &gt; -- <br/>&gt; &gt; -----------------------------------------------------------------<br/>&gt; &gt; Shlomi Fish http://www.shlomifish.org/<br/>&gt; &gt; http://www.shlomifish.org/humour/bits/Can-I-SCO-Now/ - &quot;Can I SCO Now?&quot;<br/>&gt; &gt; <br/>&gt; &gt; Chuck Norris is Vito Corleone&acute;s godfather. (by ZadYree)<br/>&gt; &gt; - http://www.shlomifish.org/humour/bits/facts/Chuck-Norris/<br/>&gt; &gt; <br/>&gt; &gt; Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/>&gt; <br/>&gt; <br/><br/><br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>Funny Anti-Terrorism Story - http://shlom.in/enemy<br/><br/>Knuth is not God! Typing &ldquo;God&rdquo; into Google and pressing &ldquo;I&rsquo;m Feeling Lucky&rdquo;<br/>will not lead you to his homepage.<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3150.html Wed, 29 May 2013 17:24:19 +0000 Re: Failures in network operation by David Cantrell On Fri, May 24, 2013 at 10:42:32AM +0900, Shmuel Fomberg wrote:<br/><br/>&gt; I released a module, WWW::Github::Files, that let you easily read files and<br/>&gt; directory from a github repository.<br/>&gt; <br/>&gt; I get a lot of test failures, where the first network call the test script<br/>&gt; does returns with &#39;Forbidden&#39;.<br/>&gt; Is there anything I need to know about accessing the network in the tests?<br/><br/>Make sure that whatever you&#39;re using to access the network knows about<br/>proxies.<br/><br/>-- <br/>David Cantrell | semi-evolved ape-thing<br/><br/>Perl: the only language that makes Welsh look acceptable<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3149.html Fri, 24 May 2013 12:15:58 +0000 Re: Failures in network operation by Shmuel Fomberg Hi Slaven.<br/><br/>&gt; I get a lot of test failures, where the first network call the test script<br/>&gt; &gt; does returns with &#39;Forbidden&#39;.<br/>&gt; &gt; Is there anything I need to know about accessing the network in the<br/>&gt; tests?<br/>&gt;<br/>&gt; if you dump the body when this happens then you see:<br/>&gt;<br/>&gt; {&quot;message&quot;:&quot;API Rate Limit Exceeded for X.Y.Z.A&quot;}<br/>&gt;<br/>&gt; I had a similar problem with Geo::Coder::Googlev3. My solution: ignore<br/>&gt; such failures in the test script.<br/>&gt;<br/><br/>Thanks, I will try dumping $res-&gt;content too and see if that is really the<br/>case.<br/><br/>Shmuel.<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3148.html Fri, 24 May 2013 06:09:04 +0000 Re: Failures in network operation by Slaven Rezic Shmuel Fomberg &lt;shmuelfomberg@gmail.com&gt; writes:<br/><br/>&gt; Hi all.<br/>&gt;<br/>&gt; I released a module, WWW::Github::Files, that let you easily read files and<br/>&gt; directory from a github repository.<br/>&gt;<br/>&gt; I get a lot of test failures, where the first network call the test script<br/>&gt; does returns with &#39;Forbidden&#39;.<br/>&gt; Is there anything I need to know about accessing the network in the tests?<br/>&gt;<br/><br/>Hi Shmuel,<br/><br/>if you dump the body when this happens then you see:<br/><br/> {&quot;message&quot;:&quot;API Rate Limit Exceeded for X.Y.Z.A&quot;}<br/><br/>I had a similar problem with Geo::Coder::Googlev3. My solution: ignore<br/>such failures in the test script.<br/><br/>Regards,<br/> Slaven<br/><br/>-- <br/>Slaven Rezic - slaven &lt;at&gt; rezic &lt;dot&gt; de<br/> BBBike - route planner for cyclists in Berlin<br/> WWW version: http://www.bbbike.de<br/> Perl/Tk version for Unix and Windows: http://bbbike.sourceforge.net<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3147.html Fri, 24 May 2013 05:53:55 +0000 Failures in network operation by Shmuel Fomberg Hi all.<br/><br/>I released a module, WWW::Github::Files, that let you easily read files and<br/>directory from a github repository.<br/><br/>I get a lot of test failures, where the first network call the test script<br/>does returns with &#39;Forbidden&#39;.<br/>Is there anything I need to know about accessing the network in the tests?<br/><br/>Thanks,<br/>Shmuel.<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3146.html Fri, 24 May 2013 01:42:44 +0000 Re: Why am I *still* getting test failures for Dist-Zilla-Plugin-ProgCriticTests-1.131250 [was Fw: CPAN Testers Daily Summary Report] by Andreas Koenig Alexandr Ciornii &lt;alexchorny@gmail.com&gt; writes:<br/><br/>&gt; 2013/5/19 Shlomi Fish &lt;shlomif@shlomifish.org&gt;:<br/>&gt;&gt; Hi all,<br/>&gt;&gt;<br/>&gt;&gt; due to the many test failures of Dist-Zilla-Plugin-ProgCriticTests-1.131250 I<br/>&gt;&gt; have removed it from PAUSE, but I am still getting test failure reports for it.<br/>&gt;&gt; How can I make them stop?<br/>&gt;<br/>&gt; PAUSE waits for 3 days before really deleting anything and then it<br/>&gt; will take some time to propagate to mirrors and from public mirrors to<br/>&gt; private mirrors.<br/>&gt;<br/>&gt; Simplest way to stop is to upload fixed version (maybe based on 1.111750).<br/><br/>And you can configure the amount of mail you get from cpantesters. Visit<br/>prefs.cpantesters.org<br/><br/>-- <br/>andreas<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3145.html Mon, 20 May 2013 05:26:10 +0000 Re: Why am I *still* getting test failures for Dist-Zilla-Plugin-ProgCriticTests-1.131250[was Fw: CPAN Testers Daily Summary Report] by Alexandr Ciornii 2013/5/19 Shlomi Fish &lt;shlomif@shlomifish.org&gt;:<br/>&gt; Hi all,<br/>&gt;<br/>&gt; due to the many test failures of Dist-Zilla-Plugin-ProgCriticTests-1.131250 I<br/>&gt; have removed it from PAUSE, but I am still getting test failure reports for it.<br/>&gt; How can I make them stop?<br/><br/>PAUSE waits for 3 days before really deleting anything and then it<br/>will take some time to propagate to mirrors and from public mirrors to<br/>private mirrors.<br/><br/>Simplest way to stop is to upload fixed version (maybe based on 1.111750).<br/><br/>--<br/>Alexandr Ciornii, http://chorny.net<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3144.html Sun, 19 May 2013 09:54:53 +0000 Why am I *still* getting test failures forDist-Zilla-Plugin-ProgCriticTests-1.131250 [was Fw: CPAN Testers DailySummary Report] by Shlomi Fish Hi all,<br/><br/>due to the many test failures of Dist-Zilla-Plugin-ProgCriticTests-1.131250 I<br/>have removed it from PAUSE, but I am still getting test failure reports for it.<br/>How can I make them stop?<br/><br/>Frustrated,<br/><br/> Shlomi Fish<br/><br/>Begin forwarded message:<br/><br/>Date: Sun, 19 May 2013 02:29:23 +0000<br/>From: CPAN Tester Report Server &lt;do_not_reply@cpantesters.org&gt;<br/>To: &quot;Shlomi Fish&quot; &lt;SHLOMIF@cpan.org&gt;<br/>Subject: CPAN Testers Daily Summary Report<br/><br/><br/>Dear Shlomi Fish,<br/><br/>Please find below the latest reports for your distributions, generated by CPAN<br/>Testers, from the last 24 hours. <br/><br/>To set your preferences for what you wish to have reported in this Daily<br/>Summary, please visit the CPAN Testers Preferences system at<br/>https://prefs.cpantesters.org.<br/><br/><br/>Dist-Zilla-Plugin-ProgCriticTests-1.131250:<br/>- amd64-freebsd-thread-multi / 5.16.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/809e3b6e-bf70-11e2-8c80-50d7c5c10595<br/><br/><br/><br/>Graph-Easy-0.72:<br/>- darwin-2level / 5.18.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/29071e72-bfd2-11e2-bd11-2b43ecc1fe0c<br/><br/><br/><br/>XML-Grammar-Vered-0.0.6:<br/>- OpenBSD.amd64-openbsd / 5.14.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/7ce0766e-bf97-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.amd64-openbsd / 5.14.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/19707eae-bfeb-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.amd64-openbsd-thread-multi / 5.12.5:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/d1582a7c-bf72-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.amd64-openbsd-thread-multi / 5.14.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/2d7528e2-bfc7-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.i386-openbsd / 5.10.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/4a3d29a4-bfb1-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.i386-openbsd-64int / 5.10.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/6504bf6a-bf87-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.i386-openbsd-thread-multi / 5.10.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/95da47d0-bf5b-11e2-8c80-50d7c5c10595<br/><br/>- OpenBSD.i386-openbsd-thread-multi-64int / 5.10.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/7cd2778c-bfef-11e2-8c80-50d7c5c10595<br/><br/>- amd64-freebsd / 5.16.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/98580b42-bfe1-11e2-8c80-50d7c5c10595<br/><br/>- amd64-freebsd-thread-multi / 5.16.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/47e085c8-bf95-11e2-8c80-50d7c5c10595<br/><br/>- amd64-midnightbsd / 5.12.2:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/e13f4464-bf9c-11e2-ad73-dd0a7cfad375<br/><br/>- amd64-midnightbsd-thread-multi / 5.12.2:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/64116bdc-bffd-11e2-ad73-dd0a7cfad375<br/><br/>- i386-freebsd-64int / 5.10.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/d280c4cc-bfb8-11e2-ad73-dd0a7cfad375<br/><br/>- i386-freebsd-thread-multi / 5.10.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/03153b38-bf5d-11e2-ad73-dd0a7cfad375<br/><br/>- x86_64-linux-thread-multi / 5.16.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/3ca2aef2-bf7c-11e2-ad73-dd0a7cfad375<br/><br/>- x86_64-linux-thread-multi-ld / 5.16.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/bc36ad20-bfe6-11e2-ad73-dd0a7cfad375<br/><br/><br/><br/>XML-GrammarBase-v0.2.2:<br/>- OpenBSD.i386-openbsd-64int / 5.12.2:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/9851a21e-bfb6-11e2-ad73-dd0a7cfad375<br/><br/><br/><br/>XML-LibXML-2.0018:<br/>- i586-linux-thread-multi / 5.8.8:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/c518764e-bfd2-11e2-ad79-519ee104d833<br/><br/><br/><br/>If you have an issue with a particular report, or wish to gain further<br/>information from the tester, please use the &#39;Find A Tester&#39; tool at<br/>http://stats.cpantesters.org/cpanmail.html, using the ID or GUID of the report,<br/>as listed above, to locate the correct email address.<br/><br/>If you wish to unsubscribe from these notifications, please login to the CPAN<br/>Testers Preferences system, with your PAUSE credentials, and disable CPAN<br/>Testers notifications permanently or temporarily. If you have problems with<br/>accessing the site, please contact Barbie &lt;barbie@cpan.org&gt; and request to be<br/>removed from the automatic mailings. <br/><br/>Thanks,<br/>The CPAN Testers<br/>-- <br/>Reports: http://www.cpantesters.org<br/>Statistics: http://stats.cpantesters.org<br/>Wiki: http://wiki.cpantesters.org<br/>Preferences: https://prefs.cpantesters.org<br/><br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>http://www.shlomifish.org/humour/bits/Can-I-SCO-Now/ - &quot;Can I SCO Now?&quot;<br/><br/>Chuck Norris taught God how to create the universe.<br/> &mdash; http://www.shlomifish.org/humour/bits/facts/Chuck-Norris/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3143.html Sun, 19 May 2013 09:07:52 +0000 Re: Bringing an OS X smoker online by Michael G. Schwern On 5/13/13 4:43 PM, David Golden wrote:<br/>&gt; Awesome! See coverage matrix here:<br/>&gt; <br/>&gt; http://stats.cpantesters.org/osmatrix-month-wide.html<br/>&gt; <br/>&gt; If you felt ambitious, maybe smoke the stock perl and whatever the<br/>&gt; latest mac ports and homebrew is.<br/><br/>Thanks, that&#39;s exactly what I need!<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3142.html Tue, 14 May 2013 18:00:53 +0000 Re: Please investigate what is causing this test failure -http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595 by Shlomi Fish Hi Reini,<br/><br/>On Tue, 14 May 2013 09:03:26 -0500<br/>Reini Urban &lt;reini@cpanel.net&gt; wrote:<br/><br/>&gt; On 05/14/2013 03:59 AM, Shlomi Fish wrote:<br/>&gt; &gt; Hi Chris,<br/>&gt; &gt;<br/>&gt; &gt; please investigate what is causing this test failure:<br/>&gt; &gt;<br/>&gt; &gt; http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/>&gt; <br/>&gt; I got the same errors on a plain debian system with libxslt 1.1.26<br/>&gt; <br/>&gt; Running: libxslt 10126, libxml2 20800<br/>&gt; Compiled with EXSLT: yes<br/><br/>I see - I can reproduce them now too in my Debian VM.<br/><br/>&gt; <br/>&gt; What do you expect if you provide a xml with bad elements<br/>&gt; in t/data/system-tests-1/input-xml/bad-elements.xml-grammar-vered.xml<br/>&gt; <br/><br/>OK, sorry for an unfortunate naming of this file. It is not that it contains<br/>bad *XML* elements (as in the opening and closing tags - &lt;tag&gt;...&lt;/tag&gt;), it<br/>is just that it is the XML source of the Perl Bad elements page here:<br/><br/>http://perl-begin.org/tutorials/bad-elements/<br/><br/>The file t/data/system-tests-1/input-xml/bad-elements.xml-grammar-vered.xml<br/>is a perfectly legal and valid XML according to XML well-formedness and the RNG<br/>schema. I&#39;ll rename it to avoid future confusion.<br/><br/>&gt; runtime error: file extradata/vered-xml-to-docbook.xslt element attribute<br/>&gt; xsl:attribute: Cannot add attributes to an element if children have been <br/>&gt; already added to the element.<br/>&gt; at XML/LibXSLT.pm line 472.<br/><br/>OK.<br/><br/>Regards,<br/><br/> Shlomi Fsih<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>Why I Love Perl - http://shlom.in/joy-of-perl<br/><br/>The first phrase that need to be taught when teaching a new language is how to<br/>say &ldquo;Do you speak English?&rdquo;. The first thing that needs to be taught when<br/>teaching a new computer tool is how to exit it.<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3141.html Tue, 14 May 2013 15:08:04 +0000 Re: Please investigate what is causing this test failure - http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595 by David Cantrell On Tue, May 14, 2013 at 11:59:12AM +0300, Shlomi Fish wrote:<br/><br/>&gt; please investigate what is causing this test failure:<br/>&gt; <br/>&gt; http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/><br/>Weren&#39;t you asking about this same problem five days ago on the perl-xml<br/>mailing list? You were told what the problem was then.<br/><br/>-- <br/>David Cantrell | Minister for Arbitrary Justice<br/><br/>Feature: an incorrectly implemented bug<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3140.html Tue, 14 May 2013 14:26:12 +0000 Re: Please investigate what is causing this test failure - http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595 by Reini Urban On 05/14/2013 03:59 AM, Shlomi Fish wrote:<br/>&gt; Hi Chris,<br/>&gt;<br/>&gt; please investigate what is causing this test failure:<br/>&gt;<br/>&gt; http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/><br/>I got the same errors on a plain debian system with libxslt 1.1.26<br/><br/>Running: libxslt 10126, libxml2 20800<br/>Compiled with EXSLT: yes<br/><br/>What do you expect if you provide a xml with bad elements<br/>in t/data/system-tests-1/input-xml/bad-elements.xml-grammar-vered.xml<br/><br/>runtime error: file extradata/vered-xml-to-docbook.xslt element attribute<br/>xsl:attribute: Cannot add attributes to an element if children have been <br/>already added to the element.<br/>at XML/LibXSLT.pm line 472.<br/><br/>&gt; And many others:<br/>&gt;<br/>&gt; &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<br/>&gt; XML-Grammar-Vered-0.0.5:<br/>&gt; - OpenBSD.amd64-openbsd / 5.8.9:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/2eba8c2a-bc06-11e2-8c80-50d7c5c10595<br/>&gt;<br/>&gt; - amd64-freebsd-thread-multi / 5.14.0:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/>&gt;<br/>&gt; - amd64-midnightbsd / 5.8.9:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/4616499a-bc2e-11e2-ad73-dd0a7cfad375<br/>&gt;<br/>&gt; - i386-freebsd / 5.10.1:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/0c5b996e-bbfa-11e2-aca6-c11f4e5d08db<br/>&gt;<br/>&gt; - i386-freebsd / 5.12.3:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/c120c5e2-bbf3-11e2-8828-93e0ca996b9c<br/>&gt;<br/>&gt; - i386-freebsd / 5.14.0:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/bf419cb0-bbee-11e2-889f-deffe9d3ece9<br/>&gt;<br/>&gt; - i386-freebsd / 5.8.9:<br/>&gt; - FAIL<br/>&gt; http://www.cpantesters.org/cpan/report/da739e10-bbfe-11e2-bf5d-df0a6a22a674<br/>&gt;<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br/>&gt;<br/>&gt; Those to seem to only happen on BSD systems, and they should be OK (and they<br/>&gt; are with old versions of libxml2).<br/>&gt;<br/>&gt; I&#39;m getting tired of running into all these test failures.<br/>&gt;<br/>&gt; Regards,<br/>&gt;<br/>&gt; Shlomi Fish<br/>&gt;<br/><br/><br/>-- <br/>Reini<br/><br/>Working towards a true Modern Perl.<br/>Slim, functional, unbloated, compile-time optimizable<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3139.html Tue, 14 May 2013 14:03:43 +0000 Please investigate what is causing this test failure -http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595 by Shlomi Fish Hi Chris,<br/><br/>please investigate what is causing this test failure:<br/><br/>http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/><br/>And many others:<br/><br/>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<br/>XML-Grammar-Vered-0.0.5:<br/>- OpenBSD.amd64-openbsd / 5.8.9:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/2eba8c2a-bc06-11e2-8c80-50d7c5c10595<br/><br/>- amd64-freebsd-thread-multi / 5.14.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/6c328b4e-bc14-11e2-8c80-50d7c5c10595<br/><br/>- amd64-midnightbsd / 5.8.9:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/4616499a-bc2e-11e2-ad73-dd0a7cfad375<br/><br/>- i386-freebsd / 5.10.1:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/0c5b996e-bbfa-11e2-aca6-c11f4e5d08db<br/><br/>- i386-freebsd / 5.12.3:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/c120c5e2-bbf3-11e2-8828-93e0ca996b9c<br/><br/>- i386-freebsd / 5.14.0:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/bf419cb0-bbee-11e2-889f-deffe9d3ece9<br/><br/>- i386-freebsd / 5.8.9:<br/> - FAIL<br/>http://www.cpantesters.org/cpan/report/da739e10-bbfe-11e2-bf5d-df0a6a22a674<br/><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br/><br/>Those to seem to only happen on BSD systems, and they should be OK (and they<br/>are with old versions of libxml2).<br/><br/>I&#39;m getting tired of running into all these test failures.<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>What Makes Software Apps High Quality - http://shlom.in/sw-quality<br/><br/>Chuck Norris *does* expect the Spanish Inquisition.<br/> &mdash; http://www.shlomifish.org/humour/bits/facts/Chuck-Norris/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3138.html Tue, 14 May 2013 08:59:27 +0000 Please fix your CPAN tester -http://www.cpantesters.org/cpan/report/d0268872-6df8-1014-99d5-521ae79c0688 by Shlomi Fish Hi Michiel,<br/><br/>your Win32 CPAN smoker emits spurious failures due to unwritable things on<br/>temporary directories:<br/><br/>http://www.cpantesters.org/cpan/report/d0268872-6df8-1014-99d5-521ae79c0688<br/><br/>Please fix it.<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>Free (Creative Commons) Music Downloads, Reviews and more - http://jamendo.com/<br/><br/>&ldquo;Publish or Perish&rdquo; &rarr; &ldquo;Life or Death&rdquo;<br/> &mdash; http://unarmed.shlomifish.org/2615.html<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3137.html Tue, 14 May 2013 08:53:57 +0000 Re: Bringing an OS X smoker online by David Golden Awesome! See coverage matrix here:<br/><br/>http://stats.cpantesters.org/osmatrix-month-wide.html<br/><br/>If you felt ambitious, maybe smoke the stock perl and whatever the<br/>latest mac ports and homebrew is.<br/><br/><br/>On Sun, May 12, 2013 at 3:25 PM, Michael G. Schwern &lt;schwern@pobox.com&gt; wrote:<br/>&gt; Hi folks,<br/>&gt;<br/>&gt; I&#39;ve gotten my hands on a Mac mini that I&#39;m going to use as an OS X<br/>&gt; smoker. I&#39;d like to know where the holes are in OS X coverage? What<br/>&gt; versions of OS X and builds of Perl are not covered so I&#39;m not redundant?<br/>&gt;<br/>&gt; Otherwise, I plan on smoking the stock OS X /usr/bin/perl using an OS a<br/>&gt; version behind the latest (ie. 10.7) on the assumption that making sure<br/>&gt; the stock perl works is important and the latest version will already be<br/>&gt; well tested by random folks on their laptops.<br/>&gt;<br/>&gt; Is anyone already running an OS X smoker?<br/>&gt;<br/>&gt; Thanks<br/>&gt; Schwern<br/><br/><br/><br/>-- <br/>David Golden &lt;xdg@xdg.me&gt;<br/>Take back your inbox! &rarr; http://www.bunchmail.com/<br/>Twitter/IRC: @xdg<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3136.html Mon, 13 May 2013 23:44:34 +0000 Bringing an OS X smoker online by Michael G. Schwern Hi folks,<br/><br/>I&#39;ve gotten my hands on a Mac mini that I&#39;m going to use as an OS X<br/>smoker. I&#39;d like to know where the holes are in OS X coverage? What<br/>versions of OS X and builds of Perl are not covered so I&#39;m not redundant?<br/><br/>Otherwise, I plan on smoking the stock OS X /usr/bin/perl using an OS a<br/>version behind the latest (ie. 10.7) on the assumption that making sure<br/>the stock perl works is important and the latest version will already be<br/>well tested by random folks on their laptops.<br/><br/>Is anyone already running an OS X smoker?<br/><br/>Thanks<br/>Schwern<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3135.html Mon, 13 May 2013 20:30:49 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Eirik Berg Hanssen On Thu, May 9, 2013 at 9:54 AM, Shlomi Fish &lt;shlomif@shlomifish.org&gt; wrote:<br/><br/>&gt; The problem is that newer versions of<br/>&gt; libxml2 and libxslt contain some bug fixes, and with older versions without<br/>&gt; these bug fixes, the tests fail.<br/>&gt;<br/><br/> I&#39;m not sure I get this. So, to be taken with appropriate amounts of<br/>salt ...<br/><br/> How essential are those bug fixes to your modules&#39; functionality?<br/><br/> A) If your module doesn&#39;t work without those bugfixes, you should require<br/>the fixed versions (and not rely on the tests to &quot;catch&quot; this situation).<br/><br/> B) If your module does its job just fine even without those bugfixes (lib<br/>code doesn&#39;t itself trigger any of those bugs), the failing tests are<br/>really testing libxml2 and libxslt, not (just) your module. You should<br/>probably rewrite those tests so that they (the test code) don&#39;t trigger<br/>those bugs, or even skip those tests if the libx{ml2,slt} are old.<br/><br/> A little from column A, a little from column B? Mix and match to taste.<br/><br/> Reduced functionality without those bugfixes? Yeah, that&#39;s trickier ...<br/>I guess it comes down to whether that functionality is considered essential<br/>or optional, and I&#39;d fall back to the A and B cases, with an eye to<br/>documentation.<br/><br/> Or I&#39;m far out on the wrong field ...<br/><br/><br/>Eirik<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3134.html Sat, 11 May 2013 09:01:49 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Reini Urban On 05/09/2013 02:54 AM, Shlomi Fish wrote:<br/>&gt; Hi Shmuel,<br/>&gt;<br/>&gt; On Thu, 9 May 2013 16:44:10 +0900<br/>&gt; Shmuel Fomberg &lt;shmuelfomberg@gmail.com&gt; wrote:<br/>&gt;<br/>&gt;&gt; On Thu, May 9, 2013 at 4:11 PM, Shlomi Fish wrote:<br/>&gt;&gt;<br/>&gt;&gt;&gt;<br/>&gt;&gt;&gt; These failures should not be happening, and they are likely caused by old<br/>&gt;&gt;&gt; versions of libxml2 and/or libxslt. Now, one option would be to require<br/>&gt;&gt;&gt; only<br/>&gt;&gt;&gt; the latest version in XML::LibXML and XML::LibXSLT, but this may<br/>&gt;&gt;&gt; inconvenience<br/>&gt;&gt;&gt; some users of older systems.<br/>&gt;&gt;&gt;<br/>&gt;&gt;&gt; Is there a better alternative?<br/>&gt;&gt;<br/>&gt;&gt; So... you want to use some features that new versions libxml2 have, but<br/>&gt;&gt; want XML::LibXML support any version of libxml2.<br/>&gt;<br/>&gt; No, the new features are not the problem. The problem is that newer versions of<br/>&gt; libxml2 and libxslt contain some bug fixes, and with older versions without<br/>&gt; these bug fixes, the tests fail.<br/><br/>Since you already detect the library version I would print an initial <br/>warning, that this system library version will fail with these bugs ...<br/><br/>Users who are not able to update libxml2 and libxslt by themselves can <br/>either bother their admin with your message. But the default is to skip <br/>the installation because the tests fail. Good.<br/><br/>Users who are able to update libxml2 and libxslt by themselves can do <br/>so, with knowing why.<br/><br/>-- <br/>Reini<br/><br/>Working towards a true Modern Perl.<br/>Slim, functional, unbloated, compile-time optimizable<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3133.html Thu, 09 May 2013 14:57:51 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Chris 'BinGOs' Williams On Thu, May 09, 2013 at 10:11:35AM +0300, Shlomi Fish wrote:<br/>&gt; Hi all,<br/>&gt; <br/>&gt; I keep getting reports of failures like this to my modules, such as:<br/>&gt; <br/>&gt; * http://www.cpantesters.org/cpan/report/7d08b688-b80d-11e2-ad73-dd0a7cfad375<br/>&gt; <br/>&gt; * http://www.cpantesters.org/cpan/report/2e8c9bae-b7e6-11e2-8285-28e030ca8a65<br/>&gt; <br/>&gt; These failures should not be happening, and they are likely caused by old<br/>&gt; versions of libxml2 and/or libxslt. Now, one option would be to require only<br/>&gt; the latest version in XML::LibXML and XML::LibXSLT, but this may inconvenience<br/>&gt; some users of older systems.<br/>&gt; <br/><br/>Referring to the OpenBSD failure above, that is OpenBSD 5.3 which was released<br/>on 1st May 2013, using the shipped ports system for that version. The libxml2<br/>provided by ports is 2.8.0 and the libxslt is 1.1.27.<br/><br/>Cheers,<br/><br/>-- <br/>Chris Williams<br/>aka BinGOs<br/>PGP ID 0x4658671F<br/>http://www.gumbynet.org.uk<br/>==========================<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3132.html Thu, 09 May 2013 09:08:12 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Shlomi Fish Hi Shmuel,<br/><br/>On Thu, 9 May 2013 16:44:10 +0900<br/>Shmuel Fomberg &lt;shmuelfomberg@gmail.com&gt; wrote:<br/><br/>&gt; On Thu, May 9, 2013 at 4:11 PM, Shlomi Fish wrote:<br/>&gt; <br/>&gt; &gt;<br/>&gt; &gt; These failures should not be happening, and they are likely caused by old<br/>&gt; &gt; versions of libxml2 and/or libxslt. Now, one option would be to require<br/>&gt; &gt; only<br/>&gt; &gt; the latest version in XML::LibXML and XML::LibXSLT, but this may<br/>&gt; &gt; inconvenience<br/>&gt; &gt; some users of older systems.<br/>&gt; &gt;<br/>&gt; &gt; Is there a better alternative?<br/>&gt; &gt;<br/>&gt; <br/>&gt; So... you want to use some features that new versions libxml2 have, but<br/>&gt; want XML::LibXML support any version of libxml2.<br/><br/>No, the new features are not the problem. The problem is that newer versions of<br/>libxml2 and libxslt contain some bug fixes, and with older versions without<br/>these bug fixes, the tests fail.<br/><br/>&gt; How about making a middle-man module, XML::LibXML::SupportsFancyFeature,<br/>&gt; that will refuse to install for old libxml installation? Then you module<br/>&gt; can depend on it.<br/><br/>That won&#39;t be a good solution like I said.<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>http://www.shlomifish.org/humour/Summerschool-at-the-NSA/<br/><br/>An original philosopher knows the right combination of ideas to steal.<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3131.html Thu, 09 May 2013 07:54:50 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Shmuel Fomberg On Thu, May 9, 2013 at 4:11 PM, Shlomi Fish wrote:<br/><br/>&gt;<br/>&gt; These failures should not be happening, and they are likely caused by old<br/>&gt; versions of libxml2 and/or libxslt. Now, one option would be to require<br/>&gt; only<br/>&gt; the latest version in XML::LibXML and XML::LibXSLT, but this may<br/>&gt; inconvenience<br/>&gt; some users of older systems.<br/>&gt;<br/>&gt; Is there a better alternative?<br/>&gt;<br/><br/>So... you want to use some features that new versions libxml2 have, but<br/>want XML::LibXML support any version of libxml2.<br/>How about making a middle-man module, XML::LibXML::SupportsFancyFeature,<br/>that will refuse to install for old libxml installation? Then you module<br/>can depend on it.<br/><br/>Shmuel.<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3130.html Thu, 09 May 2013 07:44:24 +0000 Re: What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Tony Cook On Thu, May 09, 2013 at 10:11:35AM +0300, Shlomi Fish wrote:<br/>&gt; Hi all,<br/>&gt; <br/>&gt; I keep getting reports of failures like this to my modules, such as:<br/>&gt; <br/>&gt; * http://www.cpantesters.org/cpan/report/7d08b688-b80d-11e2-ad73-dd0a7cfad375<br/>&gt; <br/>&gt; * http://www.cpantesters.org/cpan/report/2e8c9bae-b7e6-11e2-8285-28e030ca8a65<br/>&gt; <br/>&gt; These failures should not be happening, and they are likely caused by old<br/>&gt; versions of libxml2 and/or libxslt. Now, one option would be to require only<br/>&gt; the latest version in XML::LibXML and XML::LibXSLT, but this may inconvenience<br/>&gt; some users of older systems.<br/>&gt; <br/>&gt; Is there a better alternative?<br/><br/>Detect the old version at test time and skip the tests.<br/><br/>Tony<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3129.html Thu, 09 May 2013 07:16:37 +0000 What to do about XML::LibXML / XML::LibXSLT failures with oldversions of libxml2 and libxslt? by Shlomi Fish Hi all,<br/><br/>I keep getting reports of failures like this to my modules, such as:<br/><br/>* http://www.cpantesters.org/cpan/report/7d08b688-b80d-11e2-ad73-dd0a7cfad375<br/><br/>* http://www.cpantesters.org/cpan/report/2e8c9bae-b7e6-11e2-8285-28e030ca8a65<br/><br/>These failures should not be happening, and they are likely caused by old<br/>versions of libxml2 and/or libxslt. Now, one option would be to require only<br/>the latest version in XML::LibXML and XML::LibXSLT, but this may inconvenience<br/>some users of older systems.<br/><br/>Is there a better alternative?<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>Perl Humour - http://perl-begin.org/humour/<br/><br/>With the NSA&rsquo;s budget you would expect evil to be extinct by now. (By Kika).<br/> &mdash; http://www.shlomifish.org/humour/bits/facts/NSA/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/05/msg3128.html Thu, 09 May 2013 07:11:52 +0000 Re: getting strange reports regarding OS assertion by Alceu Rodrigues de Freitas Junior All right,<br/><br/>Just forget about (if you didn&#39;t already done that): I did a lot of <br/>mistakes that caused those errors.<br/><br/>First, I introduced different errors messages from:<br/><br/>&quot;No support for OS&quot;<br/>&quot;OS unsupported&quot;<br/><br/>Second, I forgot to include the Manifest and the tests where not <br/>included (at least I got a lot of &quot;SUCCESS&quot; reports telling that there <br/>were no tests to execute).<br/><br/>Third, and finally, Linux::Distribution (which was being used) does <br/>itself the OS validation in it&#39;s Makefile.PL, which is the expected <br/>behavior, but useless for my needs (validate if the OS is Linux and then <br/>check the distribution).<br/><br/>Regards,<br/><br/>Alceu<br/><br/>Em 27-04-2013 10:13, Alceu Rodrigues de Freitas Junior escreveu:<br/>&gt; I just release 0.03 of Siebel::AssertOS with an added feature to check<br/>&gt; also supported Linux distributions, but I&#39;m still getting PASS reports<br/>&gt; from OpenBSD and FreeBSD.<br/>&gt;<br/>&gt; I did some testing in my local machine and &#39;make test&#39; is getting<br/>&gt; different results from &#39;prove&#39;.<br/>&gt;<br/><br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3127.html Tue, 30 Apr 2013 00:35:48 +0000 Re: Please fix this - http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by David Golden On Mon, Apr 29, 2013 at 5:07 AM, Shlomi Fish &lt;shlomif@shlomifish.org&gt; wrote:<br/><br/>&gt; OK, this is likely a Dist-Zilla SNAFU - the question is - where?<br/><br/>Prereq generation, I would think. Prereqs going into Makefile.PL<br/>ought to be numified. E.g. 0.5.0 should be 0.005 in the prereq.<br/><br/>I don&#39;t know if the latest EUMM finally handles those or not. If so,<br/>bumping the configure requires would work, too.<br/><br/>(That said, if you have Build.PL, don&#39;t ship Makefile.PL People still<br/>on 5.8 trying to use the latest stuff on CPAN ought to be able to<br/>figure out how to install M::B at this point.)<br/><br/>David<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3126.html Mon, 29 Apr 2013 16:45:54 +0000 Re: Please fix this - http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by David Cantrell On Mon, Apr 29, 2013 at 12:06:11PM +0300, Shlomi Fish wrote:<br/>&gt; On Mon, 29 Apr 2013 10:57:34 +0300<br/>&gt; Alexandr Ciornii &lt;alexchorny@gmail.com&gt; wrote:<br/>&gt; &gt; Running `perl Makefile.PL` for XML-Grammar-Fiction 0.14.0 shows warnings:<br/>&gt; &gt; Unparsable version &#39;v0.2.1&#39; for prerequisite<br/>&gt; &gt; XML::GrammarBase::Role::XSLT at Makefile.PL line 78.<br/>&gt; &gt; Unparsable version &#39;v0.0.5&#39; for prerequisite Test::XML::Ordered at<br/>&gt; &gt; Makefile.PL line 78.<br/>&gt; &gt; If version is unparsable (not /^[\d_\.]+$/) , it is set ot 0 by EU::MM.<br/>&gt; You really should use Build.PL instead of Makefile.PL if it is available.<br/><br/>Why? If you don&#39;t want people to run Makefile.PL, don&#39;t ship it.<br/><br/>-- <br/>David Cantrell | Nth greatest programmer in the world<br/><br/>&quot; In My Egotistical Opinion, most people&#39;s ... programs should be<br/> indented six feet downward and covered with dirt. &quot;<br/> --Blair P. Houghton<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3125.html Mon, 29 Apr 2013 11:02:57 +0000 Re: Please fix this -http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by Shlomi Fish Hi breno,<br/><br/>On Mon, 29 Apr 2013 04:53:37 -0300<br/>breno &lt;garu@cpan.org&gt; wrote:<br/><br/>&gt; Hi Shlomi,<br/>&gt; <br/>&gt; It looks like your BUILD_REQUIRES do not set a minimal version for<br/>&gt; &#39;Test::XML::Ordered&#39;:<br/>&gt; <br/>&gt; https://metacpan.org/source/SHLOMIF/XML-Grammar-Fiction-0.14.0/Build.PL#L14<br/>&gt; https://metacpan.org/source/SHLOMIF/XML-Grammar-Fiction-0.14.0/Makefile.PL#L19<br/>&gt; <br/><br/>Yes, but I have Test::XML::Ordered set to 0.0.5 in the &quot;requires&quot;.<br/><br/>&gt; You should probably set the explicit version value under<br/>&gt; BUILD_REQUIRES as well, instead of &#39;0&#39;.<br/>&gt; <br/>&gt; That said, it is probably also worth noticing that versions defined as<br/>&gt; vstrings are not being considered in the build process (notice how<br/>&gt; XML::GrammarBase::Role::XSLT, which you specified as &quot;v0.2.1&quot;, is<br/>&gt; shown as having &#39;0&#39; for minimum version in the report). The target<br/>&gt; system had M:B 0.4004 and EUMM 6.64, I&#39;m not sure how&#39;s the support<br/>&gt; for specifying versions as vstrings in them, or if it should matter at<br/>&gt; all.<br/><br/>OK, this is likely a Dist-Zilla SNAFU - the question is - where?<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>&gt; <br/>&gt; <br/>&gt; Cheers,<br/>&gt; <br/>&gt; garu<br/>&gt; <br/>&gt; On Mon, Apr 29, 2013 at 4:12 AM, Shlomi Fish &lt;shlomif@shlomifish.org&gt; wrote:<br/>&gt; &gt; Hi Slaven,<br/>&gt; &gt;<br/>&gt; &gt; http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b<br/>&gt; &gt; - this is broken. Test::XML::Ordered v0.0.5 is explicitly a minimal,<br/>&gt; &gt; required, version and instead it is only at 0.0.4.<br/>&gt; &gt;<br/>&gt; &gt; Please fix it.<br/>&gt; &gt;<br/>&gt; &gt; This is with https://metacpan.org/release/XML-Grammar-Fiction .<br/>&gt; &gt;<br/>&gt; &gt; Regards,<br/>&gt; &gt;<br/>&gt; &gt; Shlomi Fish<br/>&gt; &gt; --<br/>&gt; &gt; -----------------------------------------------------------------<br/>&gt; &gt; Shlomi Fish http://www.shlomifish.org/<br/>&gt; &gt; My Favourite FOSS - http://www.shlomifish.org/open-source/favourite/<br/>&gt; &gt;<br/>&gt; &gt; Bill Gates, CEO of Microsoft decides to use Richard Stallman&rsquo;s Emacs as the<br/>&gt; &gt; basis of his company&rsquo;s state&#x2010;of&#x2010;the&#x2010;art product Microsoft Editing Macros&trade;<br/>&gt; &gt; Enterprise Edition XP .NET Professional.<br/>&gt; &gt;<br/>&gt; &gt; Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/><br/><br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>Funny Anti-Terrorism Story - http://shlom.in/enemy<br/><br/>Daniel: Yeah, those guys [= NSA] don&rsquo;t publish&hellip;<br/>Andrew: They perish, man.<br/> &mdash; http://www.shlomifish.org/humour/Summerschool-at-the-NSA/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3124.html Mon, 29 Apr 2013 09:07:55 +0000 Re: Please fix this -http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by Shlomi Fish Hi Alexandr,<br/><br/>On Mon, 29 Apr 2013 10:57:34 +0300<br/>Alexandr Ciornii &lt;alexchorny@gmail.com&gt; wrote:<br/><br/>&gt; Hi<br/>&gt; <br/>&gt; Running `perl Makefile.PL` for XML-Grammar-Fiction 0.14.0 shows warnings:<br/>&gt; <br/>&gt; Unparsable version &#39;v0.2.1&#39; for prerequisite<br/>&gt; XML::GrammarBase::Role::XSLT at Makefile.PL line 78.<br/>&gt; Unparsable version &#39;v0.0.5&#39; for prerequisite Test::XML::Ordered at<br/>&gt; Makefile.PL line 78.<br/>&gt; <br/>&gt; If version is unparsable (not /^[\d_\.]+$/) , it is set ot 0 by EU::MM.<br/><br/>You really should use Build.PL instead of Makefile.PL if it is available.<br/><br/>Regards,<br/><br/> Shlomi Fish<br/><br/>&gt; <br/>&gt; 2013/4/29 Shlomi Fish &lt;shlomif@shlomifish.org&gt;:<br/>&gt; &gt; Hi Slaven,<br/>&gt; &gt;<br/>&gt; &gt; http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b<br/>&gt; &gt; - this is broken. Test::XML::Ordered v0.0.5 is explicitly a minimal,<br/>&gt; &gt; required, version and instead it is only at 0.0.4.<br/>&gt; &gt;<br/>&gt; &gt; Please fix it.<br/>&gt; &gt;<br/>&gt; &gt; This is with https://metacpan.org/release/XML-Grammar-Fiction .<br/>&gt; <br/>&gt; <br/>&gt; --<br/>&gt; Alexandr Ciornii, http://chorny.net<br/><br/><br/><br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>&quot;The Human Hacking Field Guide&quot; - http://shlom.in/hhfg<br/><br/>Lone Starr: &ldquo;Just what we need &mdash; a Druish princess.&rdquo;<br/>Barf: &ldquo;Funny! She doesn&rsquo;t look Druish.&rdquo;<br/> &mdash; Spaceballs, http://www.imdb.com/title/tt0094012/<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3123.html Mon, 29 Apr 2013 09:06:31 +0000 Re: Please fix this - http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by Alexandr Ciornii Hi<br/><br/>Running `perl Makefile.PL` for XML-Grammar-Fiction 0.14.0 shows warnings:<br/><br/>Unparsable version &#39;v0.2.1&#39; for prerequisite<br/>XML::GrammarBase::Role::XSLT at Makefile.PL line 78.<br/>Unparsable version &#39;v0.0.5&#39; for prerequisite Test::XML::Ordered at<br/>Makefile.PL line 78.<br/><br/>If version is unparsable (not /^[\d_\.]+$/) , it is set ot 0 by EU::MM.<br/><br/>2013/4/29 Shlomi Fish &lt;shlomif@shlomifish.org&gt;:<br/>&gt; Hi Slaven,<br/>&gt;<br/>&gt; http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b -<br/>&gt; this is broken. Test::XML::Ordered v0.0.5 is explicitly a minimal, required,<br/>&gt; version and instead it is only at 0.0.4.<br/>&gt;<br/>&gt; Please fix it.<br/>&gt;<br/>&gt; This is with https://metacpan.org/release/XML-Grammar-Fiction .<br/><br/><br/>--<br/>Alexandr Ciornii, http://chorny.net<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3122.html Mon, 29 Apr 2013 07:58:09 +0000 Re: Please fix this - http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by breno Hi Shlomi,<br/><br/>It looks like your BUILD_REQUIRES do not set a minimal version for<br/>&#39;Test::XML::Ordered&#39;:<br/><br/>https://metacpan.org/source/SHLOMIF/XML-Grammar-Fiction-0.14.0/Build.PL#L14<br/>https://metacpan.org/source/SHLOMIF/XML-Grammar-Fiction-0.14.0/Makefile.PL#L19<br/><br/>You should probably set the explicit version value under<br/>BUILD_REQUIRES as well, instead of &#39;0&#39;.<br/><br/>That said, it is probably also worth noticing that versions defined as<br/>vstrings are not being considered in the build process (notice how<br/>XML::GrammarBase::Role::XSLT, which you specified as &quot;v0.2.1&quot;, is<br/>shown as having &#39;0&#39; for minimum version in the report). The target<br/>system had M:B 0.4004 and EUMM 6.64, I&#39;m not sure how&#39;s the support<br/>for specifying versions as vstrings in them, or if it should matter at<br/>all.<br/><br/><br/>Cheers,<br/><br/>garu<br/><br/>On Mon, Apr 29, 2013 at 4:12 AM, Shlomi Fish &lt;shlomif@shlomifish.org&gt; wrote:<br/>&gt; Hi Slaven,<br/>&gt;<br/>&gt; http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b -<br/>&gt; this is broken. Test::XML::Ordered v0.0.5 is explicitly a minimal, required,<br/>&gt; version and instead it is only at 0.0.4.<br/>&gt;<br/>&gt; Please fix it.<br/>&gt;<br/>&gt; This is with https://metacpan.org/release/XML-Grammar-Fiction .<br/>&gt;<br/>&gt; Regards,<br/>&gt;<br/>&gt; Shlomi Fish<br/>&gt; --<br/>&gt; -----------------------------------------------------------------<br/>&gt; Shlomi Fish http://www.shlomifish.org/<br/>&gt; My Favourite FOSS - http://www.shlomifish.org/open-source/favourite/<br/>&gt;<br/>&gt; Bill Gates, CEO of Microsoft decides to use Richard Stallman&rsquo;s Emacs as the<br/>&gt; basis of his company&rsquo;s state&#x2010;of&#x2010;the&#x2010;art product Microsoft Editing Macros&trade;<br/>&gt; Enterprise Edition XP .NET Professional.<br/>&gt;<br/>&gt; Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3121.html Mon, 29 Apr 2013 07:53:52 +0000 Please fix this -http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b by Shlomi Fish Hi Slaven,<br/><br/>http://www.cpantesters.org/cpan/report/791c9742-afca-11e2-91f6-d67446d78f5b -<br/>this is broken. Test::XML::Ordered v0.0.5 is explicitly a minimal, required,<br/>version and instead it is only at 0.0.4. <br/><br/>Please fix it.<br/><br/>This is with https://metacpan.org/release/XML-Grammar-Fiction .<br/><br/>Regards,<br/><br/> Shlomi Fish<br/>-- <br/>-----------------------------------------------------------------<br/>Shlomi Fish http://www.shlomifish.org/<br/>My Favourite FOSS - http://www.shlomifish.org/open-source/favourite/<br/><br/>Bill Gates, CEO of Microsoft decides to use Richard Stallman&rsquo;s Emacs as the<br/>basis of his company&rsquo;s state&#x2010;of&#x2010;the&#x2010;art product Microsoft Editing Macros&trade;<br/>Enterprise Edition XP .NET Professional.<br/><br/>Please reply to list if it&#39;s a mailing list post - http://shlom.in/reply .<br/> http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2013/04/msg3120.html Mon, 29 Apr 2013 07:12:50 +0000