Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ➜ ~ su -
- Password:
- "But Huey, you PROMISED!"
- "Tell 'em I lied."
- root@Bree:~# cpan Padre
- CPAN: Storable loaded ok (v2.22)
- Going to read '/root/.cpan/Metadata'
- Database was generated on Fri, 13 May 2011 20:30:52 GMT
- Running install for module 'Padre'
- Running make for P/PL/PLAVEN/Padre-0.84.tar.gz
- CPAN: Digest::SHA loaded ok (v5.61)
- CPAN: Compress::Zlib loaded ok (v2.034)
- Checksum for /root/.cpan/sources/authors/id/P/PL/PLAVEN/Padre-0.84.tar.gz ok
- CPAN: File::Temp loaded ok (v0.22)
- CPAN: Parse::CPAN::Meta loaded ok (v1.4401)
- CPAN: CPAN::Meta loaded ok (v2.110930)
- CPAN: Module::CoreList loaded ok (v2.43)
- CPAN.pm: Going to build P/PL/PLAVEN/Padre-0.84.tar.gz
- Found locale en_US
- Found wxWidgets 2.8.10
- Found Wx.pm 0.98
- Checking if your kit is complete...
- Looks good
- Warning: prerequisite Capture::Tiny 0.06 not found.
- Warning: prerequisite Template::Tiny 0.11 not found.
- Writing Makefile for Padre
- Could not read metadata file. Falling back to other methods to determine prerequisites
- ---- Unsatisfied dependencies detected during ----
- ---- PLAVEN/Padre-0.84.tar.gz ----
- Capture::Tiny [requires]
- Template::Tiny [requires]
- Running make test
- Delayed until after prerequisites
- Running make install
- Delayed until after prerequisites
- Running install for module 'Capture::Tiny'
- Running make for D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz
- Checksum for /root/.cpan/sources/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz ok
- CPAN.pm: Going to build D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz
- Checking if your kit is complete...
- Looks good
- Writing Makefile for Capture::Tiny
- cp lib/Capture/Tiny.pm blib/lib/Capture/Tiny.pm
- Manifying blib/man3/Capture::Tiny.3
- DAGOLDEN/Capture-Tiny-0.10.tar.gz
- /usr/bin/make -- OK
- CPAN: YAML loaded ok (v0.73)
- Running make test
- PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
- t/00-compile.t ............. ok
- t/01-Capture-Tiny.t ........ ok
- t/02-capture.t ............. ok
- t/03-tee.t ................. ok
- t/06-stdout-closed.t ....... ok
- t/07-stderr-closed.t ....... ok
- t/08-stdin-closed.t ........ 70/?
- # Failed test 'tee|perl|stderr|short - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # * 1|'\n * 1|'STDERR:Hello World' *
- # * 2|=head1 NAME * | |
- # * 3|\n * | |
- # * 4|utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code * | |
- # * 5|\n * | |
- # * 6|=head1 SYNOPSIS * | |
- # * 7|\n * | |
- # * 8| use utf8; * | |
- # * 9| no utf8; * | |
- # * 10|\n * | |
- # * 11| # Convert the internal representation of a Perl scalar to/from UTF-8. * | |
- # * 12|\n * | |
- # * 13| $num_octets = utf8::upgrade($string); * | |
- # * 14| $success = utf8::downgrade($string[, FAIL_OK]); * | |
- # * 15|\n * | |
- # * 16| # Change each character of a Perl scalar to/from a series of * | |
- # * 17| # characters that represent the UTF-8 bytes of each original character. * | |
- # * 18|\n * | |
- # * 19| utf8::encode($string); # "\\x{100}" becomes "\\xc4\\x80" * | |
- # * 20| utf8::decode($string); # "\\xc4\\x80" becomes "\\x{100}" * | |
- # * 21|\n * | |
- # * 22| $flag = utf8::is_utf8(STRING); # since Perl 5.8.1 * | |
- # * 23| $flag = utf8::valid(STRING); * | |
- # * 24|\n * | |
- # * 25|=head1 DESCRIPTION * | |
- # * 26|\n * | |
- # * 27|The C<use utf8> pragma tells the Perl parser to allow UTF-8 in the * | |
- # * 28|program text in the current lexical scope (allow UTF-EBCDIC on EBCDIC based * | |
- # * 29|platforms). The C<no utf8> pragma tells Perl to switch back to treating * | |
- # * 30|the source text as literal bytes in the current lexical scope. * | |
- # * 31|\n * | |
- # * 32|B<Do not use this pragma for anything else than telling Perl that your * | |
- # * 33|script is written in UTF-8.> The utility functions described below are * | |
- # * 34|directly usable without C<use utf8;>. * | |
- # * 35|\n * | |
- # * 36|Because it is not possible to reliably tell UTF-8 from native 8 bit * | |
- # * 37|encodings, you need either a Byte Order Mark at the beginning of your * | |
- # * 38|source code, or C<use utf8;>, to instruct perl. * | |
- # * 39|\n * | |
- # * 40|When UTF-8 becomes the standard source format, this pragma will * | |
- # * 41|effectively become a no-op. For convenience in what follows the term * | |
- # * 42|I<UTF-X> is used to refer to UTF-8 on ASCII and ISO Latin based * | |
- # * 43|platforms and UTF-EBCDIC on EBCDIC based platforms. * | |
- # * 44|\n * | |
- # * 45|See also the effects of the C<-C> switch and its cousin, the * | |
- # * 46|C<$ENV{PERL_UNICODE}>, in L<perlrun>. * | |
- # * 47|\n * | |
- # * 48|Enabling the C<utf8> pragma has the following effect: * | |
- # * 49|\n * | |
- # * 50|=over 4 * | |
- # * 51|\n * | |
- # * 52|=item * * | |
- # * 53|\n * | |
- # * 54|Bytes in the source text that have their high-bit set will be treated * | |
- # * 55|as being part of a literal UTF-X sequence. This includes most * | |
- # * 56|literals such as identifier names, string constants, and constant * | |
- # * 57|regular expression patterns. * | |
- # * 58|\n * | |
- # * 59|On EBCDIC platforms characters in the Latin 1 character set are * | |
- # * 60|treated as being part of a literal UTF-EBCDIC character. * | |
- # * 61|\n * | |
- # * 62|=back * | |
- # * 63|\n * | |
- # * 64|Note that if you have bytes with the eighth bit on in your script * | |
- # * 65|(for example embedded Latin-1 in your string literals), C<use utf8> * | |
- # * 66|will be unhappy since the bytes are most probably not well-formed * | |
- # * 67|UTF-X. If you want to have such bytes under C<use utf8>, you can disable * | |
- # * 68|this pragma until the end the block (or file, if at top level) by * | |
- # * 69|C<no utf8;>. * | |
- # * 70|\n * | |
- # * 71|=head2 Utility functions * | |
- # * 72|\n * | |
- # * 73|The following functions are defined in the C<utf8::> package by the * | |
- # * 74|Perl core. You do not need to say C<use utf8> to use these and in fact * | |
- # * 75|you should not say that unless you really want to have UTF-8 source code. * | |
- # * 76|\n * | |
- # * 77|=over 4 * | |
- # * 78|\n * | |
- # * 79|=item * $num_octets = utf8::upgrade($string) * | |
- # * 80|\n * | |
- # * 81|Converts in-place the internal representation of the string from an octet * | |
- # * 82|sequence in the native encoding (Latin-1 or EBCDIC) to I<UTF-X>. The * | |
- # * 83|logical character sequence itself is unchanged. If I<$string> is already * | |
- # * 84|stored as I<UTF-X>, then this is a no-op. Returns the * | |
- # * 85|number of octets necessary to represent the string as I<UTF-X>. Can be * | |
- # * 86|used to make sure that the UTF-8 flag is on, so that C<\\w> or C<lc()> * | |
- # * 87|work as Unicode on strings containing characters in the range 0x80-0xFF * | |
- # * 88|(on ASCII and derivatives). * | |
- # * 89|\n * | |
- # * 90|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 91|Therefore Encode is recommended for the general purposes; see also * | |
- # * 92|L<Encode>. * | |
- # * 93|\n * | |
- # * 94|=item * $success = utf8::downgrade($string[, FAIL_OK]) * | |
- # * 95|\n * | |
- # * 96|Converts in-place the the internal representation of the string from * | |
- # * 97|I<UTF-X> to the equivalent octet sequence in the native encoding (Latin-1 * | |
- # * 98|or EBCDIC). The logical character sequence itself is unchanged. If * | |
- # * 99|I<$string> is already stored as native 8 bit, then this is a no-op. Can * | |
- # * 100|be used to * | |
- # * 101|make sure that the UTF-8 flag is off, e.g. when you want to make sure * | |
- # * 102|that the substr() or length() function works with the usually faster * | |
- # * 103|byte algorithm. * | |
- # * 104|\n * | |
- # * 105|Fails if the original I<UTF-X> sequence cannot be represented in the * | |
- # * 106|native 8 bit encoding. On failure dies or, if the value of C<FAIL_OK> is * | |
- # * 107|true, returns false. * | |
- # * 108|\n * | |
- # * 109|Returns true on success. * | |
- # * 110|\n * | |
- # * 111|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 112|Therefore Encode is recommended for the general purposes; see also * | |
- # * 113|L<Encode>. * | |
- # * 114|\n * | |
- # * 115|=item * utf8::encode($string) * | |
- # * 116|\n * | |
- # * 117|Converts in-place the character sequence to the corresponding octet * | |
- # * 118|sequence in I<UTF-X>. That is, every (possibly wide) character gets * | |
- # * 119|replaced with a sequence of one or more characters that represent the * | |
- # * 120|individual I<UTF-X> bytes of the character. The UTF8 flag is turned off. * | |
- # * 121|Returns nothing. * | |
- # * 122|\n * | |
- # * 123| my $a = "\\x{100}"; # $a contains one character, with ord 0x100 * | |
- # * 124| utf8::encode($a); # $a contains two characters, with ords 0xc4 and 0x80 * | |
- # * 125|\n * | |
- # * 126|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 127|Therefore Encode is recommended for the general purposes; see also * | |
- # * 128|L<Encode>. * | |
- # * 129|\n * | |
- # * 130|=item * $success = utf8::decode($string) * | |
- # * 131|\n * | |
- # * 132|Attempts to convert in-place the octet sequence in I<UTF-X> to the * | |
- # * 133|corresponding character sequence. That is, it replaces each sequence of * | |
- # * 134|characters in the string whose ords represent a valid UTF-X byte * | |
- # * 135|sequence, with the corresponding single character. The UTF-8 flag is * | |
- # * 136|turned on only if the source string contains multiple-byte I<UTF-X> * | |
- # * 137|characters. If I<$string> is invalid as I<UTF-X>, returns false; * | |
- # * 138|otherwise returns true. * | |
- # * 139|\n * | |
- # * 140| my $a = "\\xc4\\x80"; # $a contains two characters, with ords 0xc4 and 0x80 * | |
- # * 141| utf8::decode($a); # $a contains one character, with ord 0x100 * | |
- # * 142|\n * | |
- # * 143|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 144|Therefore Encode is recommended for the general purposes; see also * | |
- # * 145|L<Encode>. * | |
- # * 146|\n * | |
- # * 147|=item * $flag = utf8::is_utf8(STRING) * | |
- # * 148|\n * | |
- # * 149|(Since Perl 5.8.1) Test whether STRING is in UTF-8 internally. * | |
- # * 150|Functionally the same as Encode::is_utf8(). * | |
- # * 151|\n * | |
- # * 152|=item * $flag = utf8::valid(STRING) * | |
- # * 153|\n * | |
- # * 154|[INTERNAL] Test whether STRING is in a consistent state regarding * | |
- # * 155|UTF-8. Will return true is well-formed UTF-8 and has the UTF-8 flag * | |
- # * 156|on B<or> if string is held as bytes (both these states are \'consistent\'). * | |
- # * 157|Main reason for this routine is to allow Perl\'s testsuite to check * | |
- # * 158|that operations have left strings in a consistent state. You most * | |
- # * 159|probably want to use utf8::is_utf8() instead. * | |
- # * 160|\n * | |
- # * 161|=back * | |
- # * 162|\n * | |
- # * 163|C<utf8::encode> is like C<utf8::upgrade>, but the UTF8 flag is * | |
- # * 164|cleared. See L<perlunicode> for more on the UTF8 flag and the C API * | |
- # * 165|functions C<sv_utf8_upgrade>, C<sv_utf8_downgrade>, C<sv_utf8_encode>, * | |
- # * 166|and C<sv_utf8_decode>, which are wrapped by the Perl functions * | |
- # * 167|C<utf8::upgrade>, C<utf8::downgrade>, C<utf8::encode> and * | |
- # * 168|C<utf8::decode>. Also, the functions utf8::is_utf8, utf8::valid, * | |
- # * 169|utf8::encode, utf8::decode, utf8::upgrade, and utf8::downgrade are * | |
- # * 170|actually internal, and thus always available, without a C<require utf8> * | |
- # * 171|statement. * | |
- # * 172|\n * | |
- # * 173|=head1 BUGS * | |
- # * 174|\n * | |
- # * 175|One can have Unicode in identifier names, but not in package/class or * | |
- # * 176|subroutine names. While some limited functionality towards this does * | |
- # * 177|exist as of Perl 5.8.0, that is more accidental than designed; use of * | |
- # * 178|Unicode for the said purposes is unsupported. * | |
- # * 179|\n * | |
- # * 180|One reason of this unfinishedness is its (currently) inherent * | |
- # * 181|unportability: since both package names and subroutine names may need * | |
- # * 182|to be mapped to file and directory names, the Unicode capability of * | |
- # * 183|the filesystem becomes important-- and there unfortunately aren\'t * | |
- # * 184|portable answers. * | |
- # * 185|\n * | |
- # * 186|=head1 SEE ALSO * | |
- # * 187|\n * | |
- # * 188|L<perlunitut>, L<perluniintro>, L<perlrun>, L<bytes>, L<perlunicode> * | |
- # * 189|\n * | |
- # * 190|=cut * | |
- # * 191|' * | |
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # Failed test 'tee|perl|stderr|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # * 1|'\n * 1|'STDERR:Hello World' *
- # * 2|=head1 NAME * | |
- # * 3|\n * | |
- # * 4|utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code * | |
- # * 5|\n * | |
- # * 6|=head1 SYNOPSIS * | |
- # * 7|\n * | |
- # * 8| use utf8; * | |
- # * 9| no utf8; * | |
- # * 10|\n * | |
- # * 11| # Convert the internal representation of a Perl scalar to/from UTF-8. * | |
- # * 12|\n * | |
- # * 13| $num_octets = utf8::upgrade($string); * | |
- # * 14| $success = utf8::downgrade($string[, FAIL_OK]); * | |
- # * 15|\n * | |
- # * 16| # Change each character of a Perl scalar to/from a series of * | |
- # * 17| # characters that represent the UTF-8 bytes of each original character. * | |
- # * 18|\n * | |
- # * 19| utf8::encode($string); # "\\x{100}" becomes "\\xc4\\x80" * | |
- # * 20| utf8::decode($string); # "\\xc4\\x80" becomes "\\x{100}" * | |
- # * 21|\n * | |
- # * 22| $flag = utf8::is_utf8(STRING); # since Perl 5.8.1 * | |
- # * 23| $flag = utf8::valid(STRING); * | |
- # * 24|\n * | |
- # * 25|=head1 DESCRIPTION * | |
- # * 26|\n * | |
- # * 27|The C<use utf8> pragma tells the Perl parser to allow UTF-8 in the * | |
- # * 28|program text in the current lexical scope (allow UTF-EBCDIC on EBCDIC based * | |
- # * 29|platforms). The C<no utf8> pragma tells Perl to switch back to treating * | |
- # * 30|the source text as literal bytes in the current lexical scope. * | |
- # * 31|\n * | |
- # * 32|B<Do not use this pragma for anything else than telling Perl that your * | |
- # * 33|script is written in UTF-8.> The utility functions described below are * | |
- # * 34|directly usable without C<use utf8;>. * | |
- # * 35|\n * | |
- # * 36|Because it is not possible to reliably tell UTF-8 from native 8 bit * | |
- # * 37|encodings, you need either a Byte Order Mark at the beginning of your * | |
- # * 38|source code, or C<use utf8;>, to instruct perl. * | |
- # * 39|\n * | |
- # * 40|When UTF-8 becomes the standard source format, this pragma will * | |
- # * 41|effectively become a no-op. For convenience in what follows the term * | |
- # * 42|I<UTF-X> is used to refer to UTF-8 on ASCII and ISO Latin based * | |
- # * 43|platforms and UTF-EBCDIC on EBCDIC based platforms. * | |
- # * 44|\n * | |
- # * 45|See also the effects of the C<-C> switch and its cousin, the * | |
- # * 46|C<$ENV{PERL_UNICODE}>, in L<perlrun>. * | |
- # * 47|\n * | |
- # * 48|Enabling the C<utf8> pragma has the following effect: * | |
- # * 49|\n * | |
- # * 50|=over 4 * | |
- # * 51|\n * | |
- # * 52|=item * * | |
- # * 53|\n * | |
- # * 54|Bytes in the source text that have their high-bit set will be treated * | |
- # * 55|as being part of a literal UTF-X sequence. This includes most * | |
- # * 56|literals such as identifier names, string constants, and constant * | |
- # * 57|regular expression patterns. * | |
- # * 58|\n * | |
- # * 59|On EBCDIC platforms characters in the Latin 1 character set are * | |
- # * 60|treated as being part of a literal UTF-EBCDIC character. * | |
- # * 61|\n * | |
- # * 62|=back * | |
- # * 63|\n * | |
- # * 64|Note that if you have bytes with the eighth bit on in your script * | |
- # * 65|(for example embedded Latin-1 in your string literals), C<use utf8> * | |
- # * 66|will be unhappy since the bytes are most probably not well-formed * | |
- # * 67|UTF-X. If you want to have such bytes under C<use utf8>, you can disable * | |
- # * 68|this pragma until the end the block (or file, if at top level) by * | |
- # * 69|C<no utf8;>. * | |
- # * 70|\n * | |
- # * 71|=head2 Utility functions * | |
- # * 72|\n * | |
- # * 73|The following functions are defined in the C<utf8::> package by the * | |
- # * 74|Perl core. You do not need to say C<use utf8> to use these and in fact * | |
- # * 75|you should not say that unless you really want to have UTF-8 source code. * | |
- # * 76|\n * | |
- # * 77|=over 4 * | |
- # * 78|\n * | |
- # * 79|=item * $num_octets = utf8::upgrade($string) * | |
- # * 80|\n * | |
- # * 81|Converts in-place the internal representation of the string from an octet * | |
- # * 82|sequence in the native encoding (Latin-1 or EBCDIC) to I<UTF-X>. The * | |
- # * 83|logical character sequence itself is unchanged. If I<$string> is already * | |
- # * 84|stored as I<UTF-X>, then this is a no-op. Returns the * | |
- # * 85|number of octets necessary to represent the string as I<UTF-X>. Can be * | |
- # * 86|used to make sure that the UTF-8 flag is on, so that C<\\w> or C<lc()> * | |
- # * 87|work as Unicode on strings containing characters in the range 0x80-0xFF * | |
- # * 88|(on ASCII and derivatives). * | |
- # * 89|\n * | |
- # * 90|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 91|Therefore Encode is recommended for the general purposes; see also * | |
- # * 92|L<Encode>. * | |
- # * 93|\n * | |
- # * 94|=item * $success = utf8::downgrade($string[, FAIL_OK]) * | |
- # * 95|\n * | |
- # * 96|Converts in-place the the internal representation of the string from * | |
- # * 97|I<UTF-X> to the equivalent octet sequence in the native encoding (Latin-1 * | |
- # * 98|or EBCDIC). The logical character sequence itself is unchanged. If * | |
- # * 99|I<$string> is already stored as native 8 bit, then this is a no-op. Can * | |
- # * 100|be used to * | |
- # * 101|make sure that the UTF-8 flag is off, e.g. when you want to make sure * | |
- # * 102|that the substr() or length() function works with the usually faster * | |
- # * 103|byte algorithm. * | |
- # * 104|\n * | |
- # * 105|Fails if the original I<UTF-X> sequence cannot be represented in the * | |
- # * 106|native 8 bit encoding. On failure dies or, if the value of C<FAIL_OK> is * | |
- # * 107|true, returns false. * | |
- # * 108|\n * | |
- # * 109|Returns true on success. * | |
- # * 110|\n * | |
- # * 111|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 112|Therefore Encode is recommended for the general purposes; see also * | |
- # * 113|L<Encode>. * | |
- # * 114|\n * | |
- # * 115|=item * utf8::encode($string) * | |
- # * 116|\n * | |
- # * 117|Converts in-place the character sequence to the corresponding octet * | |
- # * 118|sequence in I<UTF-X>. That is, every (possibly wide) character gets * | |
- # * 119|replaced with a sequence of one or more characters that represent the * | |
- # * 120|individual I<UTF-X> bytes of the character. The UTF8 flag is turned off. * | |
- # * 121|Returns nothing. * | |
- # * 122|\n * | |
- # * 123| my $a = "\\x{100}"; # $a contains one character, with ord 0x100 * | |
- # * 124| utf8::encode($a); # $a contains two characters, with ords 0xc4 and 0x80 * | |
- # * 125|\n * | |
- # * 126|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 127|Therefore Encode is recommended for the general purposes; see also * | |
- # * 128|L<Encode>. * | |
- # * 129|\n * | |
- # * 130|=item * $success = utf8::decode($string) * | |
- # * 131|\n * | |
- # * 132|Attempts to convert in-place the octet sequence in I<UTF-X> to the * | |
- # * 133|corresponding character sequence. That is, it replaces each sequence of * | |
- # * 134|characters in the string whose ords represent a valid UTF-X byte * | |
- # * 135|sequence, with the corresponding single character. The UTF-8 flag is * | |
- # * 136|turned on only if the source string contains multiple-byte I<UTF-X> * | |
- # * 137|characters. If I<$string> is invalid as I<UTF-X>, returns false; * | |
- # * 138|otherwise returns true. * | |
- # * 139|\n * | |
- # * 140| my $a = "\\xc4\\x80"; # $a contains two characters, with ords 0xc4 and 0x80 * | |
- # * 141| utf8::decode($a); # $a contains one character, with ord 0x100 * | |
- # * 142|\n * | |
- # * 143|B<Note that this function does not handle arbitrary encodings.> * | |
- # * 144|Therefore Encode is recommended for the general purposes; see also * | |
- # * 145|L<Encode>. * | |
- # * 146|\n * | |
- # * 147|=item * $flag = utf8::is_utf8(STRING) * | |
- # * 148|\n * | |
- # * 149|(Since Perl 5.8.1) Test whether STRING is in UTF-8 internally. * | |
- # * 150|Functionally the same as Encode::is_utf8(). * | |
- # * 151|\n * | |
- # * 152|=item * $flag = utf8::valid(STRING) * | |
- # * 153|\n * | |
- # * 154|[INTERNAL] Test whether STRING is in a consistent state regarding * | |
- # * 155|UTF-8. Will return true is well-formed UTF-8 and has the UTF-8 flag * | |
- # * 156|on B<or> if string is held as bytes (both these states are \'consistent\'). * | |
- # * 157|Main reason for this routine is to allow Perl\'s testsuite to check * | |
- # * 158|that operations have left strings in a consistent state. You most * | |
- # * 159|probably want to use utf8::is_utf8() instead. * | |
- # * 160|\n * | |
- # * 161|=back * | |
- # * 162|\n * | |
- # * 163|C<utf8::encode> is like C<utf8::upgrade>, but the UTF8 flag is * | |
- # * 164|cleared. See L<perlunicode> for more on the UTF8 flag and the C API * | |
- # * 165|functions C<sv_utf8_upgrade>, C<sv_utf8_downgrade>, C<sv_utf8_encode>, * | |
- # * 166|and C<sv_utf8_decode>, which are wrapped by the Perl functions * | |
- # * 167|C<utf8::upgrade>, C<utf8::downgrade>, C<utf8::encode> and * | |
- # * 168|C<utf8::decode>. Also, the functions utf8::is_utf8, utf8::valid, * | |
- # * 169|utf8::encode, utf8::decode, utf8::upgrade, and utf8::downgrade are * | |
- # * 170|actually internal, and thus always available, without a C<require utf8> * | |
- # * 171|statement. * | |
- # * 172|\n * | |
- # * 173|=head1 BUGS * | |
- # * 174|\n * | |
- # * 175|One can have Unicode in identifier names, but not in package/class or * | |
- # * 176|subroutine names. While some limited functionality towards this does * | |
- # * 177|exist as of Perl 5.8.0, that is more accidental than designed; use of * | |
- # * 178|Unicode for the said purposes is unsupported. * | |
- # * 179|\n * | |
- # * 180|One reason of this unfinishedness is its (currently) inherent * | |
- # * 181|unportability: since both package names and subroutine names may need * | |
- # * 182|to be mapped to file and directory names, the Unicode capability of * | |
- # * 183|the filesystem becomes important-- and there unfortunately aren\'t * | |
- # * 184|portable answers. * | |
- # * 185|\n * | |
- # * 186|=head1 SEE ALSO * | |
- # * 187|\n * | |
- # * 188|L<perlunitut>, L<perluniintro>, L<perlrun>, L<bytes>, L<perlunicode> * | |
- # * 189|\n * | |
- # * 190|=cut * | |
- # * 191|' * | |
- # +----+---------------------------------------------------------------------------------+---+----------------------+
- # Failed test 'tee|perl|stderr|multiline - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|stderr|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|stderr|unicode - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|stderr|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|both|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|both|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|both|short - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|both|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|both|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|both|multiline - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|both|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|both|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|both|unicode - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|both|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|stdout|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|perl|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|stdout|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|perl|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|perl|stdout|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|stderr|short - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|stderr|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|stderr|multiline - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|stderr|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|stderr|unicode - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|stderr|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|both|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|both|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|both|short - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|both|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- t/08-stdin-closed.t ........ 144/?
- # Failed test 'tee|sys|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|both|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|both|multiline - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|both|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|both|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|both|unicode - got STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|both|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|stdout|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee|sys|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|stdout|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee|sys|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee|sys|stdout|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|stderr|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|stderr|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|stderr|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|both|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|both|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|both|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|both|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|both|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|both|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|both|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|stdout|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|perl|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|stdout|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|perl|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|perl|stdout|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|stderr|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|stderr|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|stderr|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|both|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|both|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|both|short - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDERR:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|both|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|both|multiline - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDERR:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|both|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|both|unicode - tee STDERR'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|stdout|short - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+----------------------+
- # | Ln|Got |Expected |
- # +---+-----+----------------------+
- # * 1|'' |'STDOUT:Hello World' *
- # +---+-----+----------------------+
- # Failed test 'tee_scalar|sys|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|stdout|multiline - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+----------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+----------------------+
- # * 1|'' * 1|'STDOUT:First line\n *
- # | | * 2|Second line *
- # | | * 3|' *
- # +---+-----+---+----------------------+
- # Failed test 'tee_scalar|sys|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_scalar|sys|stdout|unicode - tee STDOUT'
- # at t/lib/Cases.pm line 30.
- # +---+-----+---+------------------------+
- # | Ln|Got | Ln|Expected |
- # +---+-----+---+------------------------+
- # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
- # | | * 2|' *
- # +---+-----+---+------------------------+
- # Failed test 'tee_merged|perl|stderr|short - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|perl|stderr|short - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|perl|stderr|multiline - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|stderr|multiline - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- t/08-stdin-closed.t ........ 228/?
- # Failed test 'tee_merged|perl|stderr|unicode - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|stderr|unicode - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|both|short - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|perl|both|short - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|perl|both|short - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|perl|both|short - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|perl|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|both|multiline - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|both|multiline - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|both|multiline - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|both|unicode - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|both|unicode - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|both|unicode - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|perl|stdout|short - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|perl|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|stdout|multiline - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|perl|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|perl|stdout|unicode - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|stderr|short - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|sys|stderr|short - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|sys|stderr|multiline - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|stderr|multiline - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|stderr|unicode - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|stderr|unicode - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|both|short - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|sys|both|short - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|sys|both|short - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|sys|both|short - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hello\ World)'
- # Failed test 'tee_merged|sys|both|multiline - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|both|multiline - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|both|multiline - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|both|multiline - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|both|unicode - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|both|unicode - got STDERR'
- # at t/lib/Cases.pm line 173.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|both|unicode - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|both|unicode - tee STDOUT (STDERR)'
- # at t/lib/Cases.pm line 175.
- # ''
- # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|stdout|short - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|sys|stdout|short - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hello\ World)'
- # Failed test 'tee_merged|sys|stdout|multiline - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|stdout|multiline - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:First\ line\
- # Second\ line\
- # )'
- # Failed test 'tee_merged|sys|stdout|unicode - got STDOUT'
- # at t/lib/Cases.pm line 172.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'tee_merged|sys|stdout|unicode - tee STDOUT (STDOUT)'
- # at t/lib/Cases.pm line 174.
- # ''
- # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
- # )'
- # Failed test 'no file descriptors leaked'
- # at t/08-stdin-closed.t line 41.
- # got: '4'
- # expected: '0'
- # Looks like you failed 133 tests of 308.
- t/08-stdin-closed.t ........ Dubious, test returned 133 (wstat 34048, 0x8500)
- Failed 133/308 subtests
- t/09-preserve-exit-code.t .. ok
- t/10-stdout-string.t ....... ok
- t/11-stderr-string.t ....... ok
- t/12-stdin-string.t ........ ok
- t/13-stdout-tied.t ......... ok
- t/14-stderr-tied.t ......... ok
- t/15-stdin-tied.t .......... ok
- t/16-catch-errors.t ........ ok
- Test Summary Report
- -------------------
- t/08-stdin-closed.t (Wstat: 34048 Tests: 308 Failed: 133)
- Failed tests: 94-95, 98-99, 102-117, 120-121, 124-125
- 130-131, 134-135, 138-153, 156-157, 160-161
- 166, 169, 172-183, 185-186, 188-189, 193
- 196, 199-210, 212-213, 215-216, 219, 221
- 224, 226, 229, 231, 233-236, 238-241, 243-246
- 248, 250, 253, 255, 258, 260, 264, 266
- 269, 271, 274, 276, 278-281, 283-286, 288-291
- 293, 295, 298, 300, 303, 305, 308
- Non-zero exit status: 133
- t/13-stdout-tied.t (Wstat: 0 Tests: 309 Failed: 0)
- TODO passed: 6-7, 13, 19, 24-25, 31, 37, 40, 49, 60
- 73, 78, 91, 100-103, 114-115, 126-127, 136-139
- 150-151, 162-163, 170-172, 181, 190, 197-199
- 208, 217, 228, 230, 232, 247, 259, 261-262
- 273, 275, 277, 292, 304, 306-307
- t/14-stderr-tied.t (Wstat: 0 Tests: 309 Failed: 0)
- TODO passed: 6, 12, 18-19, 24, 30, 36-37, 40, 43, 46
- 49, 52, 55, 60-61, 66-67, 72-73, 78-79
- 84-85, 90-91, 100-101, 112-113, 124-127
- 136-137, 148-149, 160-163, 170-171, 179-180
- 188-190, 197-198, 206-207, 215-217, 228-232
- 243-247, 258-262, 273-277, 288-292, 303-307
- Files=15, Tests=3104, 25 wallclock secs ( 1.03 usr 0.11 sys + 9.59 cusr 10.61 csys = 21.34 CPU)
- Result: FAIL
- Failed 1/15 test programs. 133/3104 subtests failed.
- make: *** [test_dynamic] Error 255
- DAGOLDEN/Capture-Tiny-0.10.tar.gz
- /usr/bin/make test -- NOT OK
- //hint// to see the cpan-testers results for installing this module, try:
- reports DAGOLDEN/Capture-Tiny-0.10.tar.gz
- Running make install
- make test had returned bad status, won't install without force
- Running install for module 'Template::Tiny'
- Running make for A/AD/ADAMK/Template-Tiny-0.11.tar.gz
- Checksum for /root/.cpan/sources/authors/id/A/AD/ADAMK/Template-Tiny-0.11.tar.gz ok
- CPAN.pm: Going to build A/AD/ADAMK/Template-Tiny-0.11.tar.gz
- Checking if your kit is complete...
- Looks good
- Warning: prerequisite Capture::Tiny 0.07 not found.
- Writing Makefile for Template::Tiny
- ---- Unsatisfied dependencies detected during ----
- ---- ADAMK/Template-Tiny-0.11.tar.gz ----
- Capture::Tiny [requires]
- Running make test
- Delayed until after prerequisites
- Running make install
- Delayed until after prerequisites
- Running install for module 'Capture::Tiny'
- Running make install
- make test had returned bad status, won't install without force
- Running make for A/AD/ADAMK/Template-Tiny-0.11.tar.gz
- Has already been unwrapped into directory /root/.cpan/build/Template-Tiny-0.11-aypbVA
- CPAN.pm: Going to build A/AD/ADAMK/Template-Tiny-0.11.tar.gz
- Warning: Prerequisite 'Capture::Tiny => 0.07' for 'ADAMK/Template-Tiny-0.11.tar.gz' failed when processing 'DAGOLDEN/Capture-Tiny-0.10.tar.gz' with 'make_test => NO'. Continuing, but chances to succeed are limited.
- CPAN: Time::HiRes loaded ok (v1.9719)
- cp lib/Template/Tiny.pm blib/lib/Template/Tiny.pm
- Manifying blib/man3/Template::Tiny.3
- ADAMK/Template-Tiny-0.11.tar.gz
- /usr/bin/make -- OK
- Running make test
- PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
- t/01_compile.t ... ok
- t/02_trivial.t ... Can't locate Capture/Tiny.pm in @INC (@INC contains: /root/.cpan/build/Template-Tiny-0.11-aypbVA/blib/lib /root/.cpan/build/Template-Tiny-0.11-aypbVA/blib/arch /usr/lib64/perl5/site_perl/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.12.3 /usr/lib64/perl5/vendor_perl/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.12.3 /usr/lib64/perl5/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/5.12.3 /usr/lib64/perl5/site_perl /usr/lib64/perl5/vendor_perl .) at t/02_trivial.t line 10.
- BEGIN failed--compilation aborted at t/02_trivial.t line 10.
- # Looks like your test exited with 2 before it could output anything.
- t/02_trivial.t ... Dubious, test returned 2 (wstat 512, 0x200)
- Failed 2/2 subtests
- t/03_samples.t ... ok
- t/04_compat.t .... skipped: Template Toolkit is not installed
- t/05_preparse.t .. ok
- Test Summary Report
- -------------------
- t/02_trivial.t (Wstat: 512 Tests: 0 Failed: 0)
- Non-zero exit status: 2
- Parse errors: Bad plan. You planned 2 tests but ran 0.
- Files=5, Tests=58, 0 wallclock secs ( 0.06 usr 0.03 sys + 0.19 cusr 0.03 csys = 0.31 CPU)
- Result: FAIL
- Failed 1/5 test programs. 0/58 subtests failed.
- make: *** [test_dynamic] Error 255
- ADAMK/Template-Tiny-0.11.tar.gz
- one dependency not OK (Capture::Tiny); additionally test harness failed
- /usr/bin/make test -- NOT OK
- //hint// to see the cpan-testers results for installing this module, try:
- reports ADAMK/Template-Tiny-0.11.tar.gz
- Running make install
- make test had returned bad status, won't install without force
- Running make for P/PL/PLAVEN/Padre-0.84.tar.gz
- Has already been unwrapped into directory /root/.cpan/build/Padre-0.84-KjA62O
- CPAN.pm: Going to build P/PL/PLAVEN/Padre-0.84.tar.gz
- Warning: Prerequisite 'Capture::Tiny => 0.06' for 'PLAVEN/Padre-0.84.tar.gz' failed when processing 'DAGOLDEN/Capture-Tiny-0.10.tar.gz' with 'make_test => NO'. Continuing, but chances to succeed are limited.
- Warning: Prerequisite 'Template::Tiny => 0.11' for 'PLAVEN/Padre-0.84.tar.gz' failed when processing 'ADAMK/Template-Tiny-0.11.tar.gz' with 'make_test => NO one dependency not OK (Capture::Tiny); additionally test harness failed'. Continuing, but chances to succeed are limited.
- blib/lib/auto/share/dist/Padre/locale -> blib/lib/auto/share/dist/Padre/locale
- blib/lib/auto/share/dist/Padre/locale/ko.po -> blib/lib/auto/share/dist/Padre/locale/ko.mo
- blib/lib/auto/share/dist/Padre/locale/no.po -> blib/lib/auto/share/dist/Padre/locale/no.mo
- blib/lib/auto/share/dist/Padre/locale/cz.po -> blib/lib/auto/share/dist/Padre/locale/cz.mo
- blib/lib/auto/share/dist/Padre/locale/hu.po -> blib/lib/auto/share/dist/Padre/locale/hu.mo
- blib/lib/auto/share/dist/Padre/locale/he.po -> blib/lib/auto/share/dist/Padre/locale/he.mo
- blib/lib/auto/share/dist/Padre/locale/de.po -> blib/lib/auto/share/dist/Padre/locale/de.mo
- blib/lib/auto/share/dist/Padre/locale/es-es.po -> blib/lib/auto/share/dist/Padre/locale/es-es.mo
- blib/lib/auto/share/dist/Padre/locale/it-it.po -> blib/lib/auto/share/dist/Padre/locale/it-it.mo
- blib/lib/auto/share/dist/Padre/locale/nl-nl.po -> blib/lib/auto/share/dist/Padre/locale/nl-nl.mo
- blib/lib/auto/share/dist/Padre/locale/pl.po -> blib/lib/auto/share/dist/Padre/locale/pl.mo
- blib/lib/auto/share/dist/Padre/locale/fa.po -> blib/lib/auto/share/dist/Padre/locale/fa.mo
- blib/lib/auto/share/dist/Padre/locale/ar.po -> blib/lib/auto/share/dist/Padre/locale/ar.mo
- blib/lib/auto/share/dist/Padre/locale/zh-tw.po -> blib/lib/auto/share/dist/Padre/locale/zh-tw.mo
- blib/lib/auto/share/dist/Padre/locale/fr-fr.po -> blib/lib/auto/share/dist/Padre/locale/fr-fr.mo
- blib/lib/auto/share/dist/Padre/locale/ru.po -> blib/lib/auto/share/dist/Padre/locale/ru.mo
- blib/lib/auto/share/dist/Padre/locale/zh-cn.po -> blib/lib/auto/share/dist/Padre/locale/zh-cn.mo
- blib/lib/auto/share/dist/Padre/locale/tr.po -> blib/lib/auto/share/dist/Padre/locale/tr.mo
- blib/lib/auto/share/dist/Padre/locale/ja.po -> blib/lib/auto/share/dist/Padre/locale/ja.mo
- blib/lib/auto/share/dist/Padre/locale/pt-br.po -> blib/lib/auto/share/dist/Padre/locale/pt-br.mo
- -blib/lib/auto/share/dist/Padre/locale/messages.pot
- cp lib/Padre/Document/Perl.pm blib/lib/Padre/Document/Perl.pm
- cp lib/Padre/DB/Plugin.pm blib/lib/Padre/DB/Plugin.pm
- cp lib/Padre/MimeTypes.pm blib/lib/Padre/MimeTypes.pm
- cp lib/Padre/Wx/Menu/Debug.pm blib/lib/Padre/Wx/Menu/Debug.pm
- cp lib/Padre/Autosave.pm blib/lib/Padre/Autosave.pm
- cp lib/Padre/Wx/Progress.pm blib/lib/Padre/Wx/Progress.pm
- cp lib/Padre/Wx/Dialog/OpenURL.pm blib/lib/Padre/Wx/Dialog/OpenURL.pm
- cp lib/Padre/Wx/Dialog/SpecialValues.pm blib/lib/Padre/Wx/Dialog/SpecialValues.pm
- cp lib/Padre/Plugin/My.pm blib/lib/Padre/Plugin/My.pm
- cp lib/Padre/Wx/Main.pm blib/lib/Padre/Wx/Main.pm
- cp lib/Padre/Config/Setting.pm blib/lib/Padre/Config/Setting.pm
- cp lib/Padre/PPI/Transform.pm blib/lib/Padre/PPI/Transform.pm
- cp lib/Padre/Current.pm blib/lib/Padre/Current.pm
- cp lib/Padre/Wx/Dialog/Text.pm blib/lib/Padre/Wx/Dialog/Text.pm
- cp lib/Padre/Task/LaunchDefaultBrowser.pm blib/lib/Padre/Task/LaunchDefaultBrowser.pm
- cp lib/Padre/Wx/Menu/Edit.pm blib/lib/Padre/Wx/Menu/Edit.pm
- cp lib/Padre/Wx/Syntax.pm blib/lib/Padre/Wx/Syntax.pm
- cp lib/Padre/Wx/Wizard.pm blib/lib/Padre/Wx/Wizard.pm
- cp lib/Padre/Project.pm blib/lib/Padre/Project.pm
- cp lib/Padre/Wx/Debug.pm blib/lib/Padre/Wx/Debug.pm
- cp lib/Padre/Task/Outline.pm blib/lib/Padre/Task/Outline.pm
- cp lib/Padre/Plugin/PopularityContest/Ping.pm blib/lib/Padre/Plugin/PopularityContest/Ping.pm
- cp lib/Padre/Wx/Dialog/Wizard/Padre/Plugin.pm blib/lib/Padre/Wx/Dialog/Wizard/Padre/Plugin.pm
- cp lib/Padre/Wx/Style.pm blib/lib/Padre/Wx/Style.pm
- cp lib/Padre/Task/Addition.pm blib/lib/Padre/Task/Addition.pm
- cp lib/Padre/Wx/Directory/Search.pm blib/lib/Padre/Wx/Directory/Search.pm
- cp lib/Padre/Role/Task.pm blib/lib/Padre/Role/Task.pm
- cp lib/Padre/Wx/WizardLibrary.pm blib/lib/Padre/Wx/WizardLibrary.pm
- cp lib/Padre/Wx/Dialog/Bookmarks.pm blib/lib/Padre/Wx/Dialog/Bookmarks.pm
- cp lib/Padre/Wx/Directory/Path.pm blib/lib/Padre/Wx/Directory/Path.pm
- cp lib/Padre/Document/Perl/QuickFix/StrictWarnings.pm blib/lib/Padre/Document/Perl/QuickFix/StrictWarnings.pm
- cp lib/Padre/Wx/Dialog/Preferences.pm blib/lib/Padre/Wx/Dialog/Preferences.pm
- cp lib/Padre/Util.pm blib/lib/Padre/Util.pm
- cp lib/Padre/Constant.pm blib/lib/Padre/Constant.pm
- cp lib/Padre/Perl.pm blib/lib/Padre/Perl.pm
- cp lib/Padre/Wx/Dialog/Preferences/Editor.pm blib/lib/Padre/Wx/Dialog/Preferences/Editor.pm
- cp lib/Padre/Wx/Directory/Browse.pm blib/lib/Padre/Wx/Directory/Browse.pm
- cp lib/Padre/Task/PPI.pm blib/lib/Padre/Task/PPI.pm
- cp lib/Padre/Portable.pm blib/lib/Padre/Portable.pm
- cp lib/Padre/Document/POD.pm blib/lib/Padre/Document/POD.pm
- cp lib/Padre/Wx/Role/Conduit.pm blib/lib/Padre/Wx/Role/Conduit.pm
- cp lib/Padre/Wx/Directory/TreeCtrl.pm blib/lib/Padre/Wx/Directory/TreeCtrl.pm
- cp lib/Padre/Wx/CPAN/Listview.pm blib/lib/Padre/Wx/CPAN/Listview.pm
- cp lib/Padre/Search.pm blib/lib/Padre/Search.pm
- cp lib/Padre/Wx/Menu.pm blib/lib/Padre/Wx/Menu.pm
- cp lib/Padre/Wx/Dialog/DocStats.pm blib/lib/Padre/Wx/Dialog/DocStats.pm
- cp lib/Padre/Document.pm blib/lib/Padre/Document.pm
- cp lib/Padre/Wx/Dialog/Preferences/File.pm blib/lib/Padre/Wx/Dialog/Preferences/File.pm
- cp lib/Padre/Util/CommandLine.pm blib/lib/Padre/Util/CommandLine.pm
- cp lib/Padre/Wx/Right.pm blib/lib/Padre/Wx/Right.pm
- cp lib/Padre/Wx/ToolBar.pm blib/lib/Padre/Wx/ToolBar.pm
- cp lib/Padre/Util/Template.pm blib/lib/Padre/Util/Template.pm
- cp lib/Padre/Pod2HTML.pm blib/lib/Padre/Pod2HTML.pm
- cp lib/Padre/Document/Perl/Lexer.pm blib/lib/Padre/Document/Perl/Lexer.pm
- cp lib/Padre/Browser/PseudoPerldoc.pm blib/lib/Padre/Browser/PseudoPerldoc.pm
- cp lib/Padre/Wx/Dialog/HTML.pm blib/lib/Padre/Wx/Dialog/HTML.pm
- cp lib/Padre/Config/Project.pm blib/lib/Padre/Config/Project.pm
- cp lib/Padre/Wx/Dialog/PluginManager.pm blib/lib/Padre/Wx/Dialog/PluginManager.pm
- cp lib/Padre/TaskManager.pm blib/lib/Padre/TaskManager.pm
- cp lib/Padre/Task/LWP.pm blib/lib/Padre/Task/LWP.pm
- cp lib/Padre/Config/Patch.pm blib/lib/Padre/Config/Patch.pm
- cp lib/Padre/Wx/Browser.pm blib/lib/Padre/Wx/Browser.pm
- cp lib/Padre/Wx/FBP/FindInFiles.pm blib/lib/Padre/Wx/FBP/FindInFiles.pm
- cp lib/Padre/TaskQueue.pm blib/lib/Padre/TaskQueue.pm
- cp lib/Padre/Wx/Printout.pm blib/lib/Padre/Wx/Printout.pm
- cp lib/Padre/Wx/Menu/Search.pm blib/lib/Padre/Wx/Menu/Search.pm
- cp lib/Padre/Task/IntroduceTemporaryVariable.pm blib/lib/Padre/Task/IntroduceTemporaryVariable.pm
- cp lib/Padre/DB/Migrate/Patch.pm blib/lib/Padre/DB/Migrate/Patch.pm
- cp lib/Padre/Cache.pm blib/lib/Padre/Cache.pm
- cp lib/Padre/Wx/Dialog/Replace.pm blib/lib/Padre/Wx/Dialog/Replace.pm
- cp lib/Padre/Wx/Dialog/Wizard/Perl/Module.pm blib/lib/Padre/Wx/Dialog/Wizard/Perl/Module.pm
- cp lib/Padre/DB/LastPositionInFile.pm blib/lib/Padre/DB/LastPositionInFile.pm
- cp lib/Padre/Sync.pm blib/lib/Padre/Sync.pm
- cp lib/Padre/Transform.pm blib/lib/Padre/Transform.pm
- cp lib/Padre/Wx/Dialog/QuickMenuAccess.pm blib/lib/Padre/Wx/Dialog/QuickMenuAccess.pm
- cp lib/Padre/Task/Eval.pm blib/lib/Padre/Task/Eval.pm
- cp lib/Padre/DB/SessionFile.pm blib/lib/Padre/DB/SessionFile.pm
- cp lib/Padre/Wx/Dialog/Shortcut.pm blib/lib/Padre/Wx/Dialog/Shortcut.pm
- cp lib/Padre/Wx/Output.pm blib/lib/Padre/Wx/Output.pm
- cp lib/Padre/Wx/Role/Dialog.pm blib/lib/Padre/Wx/Role/Dialog.pm
- cp lib/Padre/Wx/Menu/Help.pm blib/lib/Padre/Wx/Menu/Help.pm
- cp lib/Padre/Locale.pm blib/lib/Padre/Locale.pm
- cp lib/Padre/Wx/Menu/Window.pm blib/lib/Padre/Wx/Menu/Window.pm
- cp lib/Padre.pm blib/lib/Padre.pm
- cp lib/Padre/Wx/FindResult.pm blib/lib/Padre/Wx/FindResult.pm
- cp lib/Padre/Wx/Popup.pm blib/lib/Padre/Wx/Popup.pm
- cp lib/Padre/Wx/Dialog/KeyBindings.pm blib/lib/Padre/Wx/Dialog/KeyBindings.pm
- cp lib/Padre/Wx/Role/Form.pm blib/lib/Padre/Wx/Role/Form.pm
- cp lib/Padre/Wx/HtmlWindow.pm blib/lib/Padre/Wx/HtmlWindow.pm
- cp lib/Padre/Wx/Menu/Run.pm blib/lib/Padre/Wx/Menu/Run.pm
- cp lib/Padre/Wx/Dialog/SessionSave.pm blib/lib/Padre/Wx/Dialog/SessionSave.pm
- cp lib/Padre/Wx/Role/Main.pm blib/lib/Padre/Wx/Role/Main.pm
- cp lib/Padre/Task/OpenResource.pm blib/lib/Padre/Task/OpenResource.pm
- cp lib/Padre/Wx/Dialog/Goto.pm blib/lib/Padre/Wx/Dialog/Goto.pm
- cp lib/Padre/File/HTTP.pm blib/lib/Padre/File/HTTP.pm
- cp lib/Padre/Wx/CPAN.pm blib/lib/Padre/Wx/CPAN.pm
- cp lib/Padre/Browser/Document.pm blib/lib/Padre/Browser/Document.pm
- cp lib/Padre/Wx/Dialog/RegexEditor.pm blib/lib/Padre/Wx/Dialog/RegexEditor.pm
- cp lib/Padre/Wx/Dialog/PerlFilter.pm blib/lib/Padre/Wx/Dialog/PerlFilter.pm
- cp lib/Padre/Wx/Dialog/Preferences/PerlAutoComplete.pm blib/lib/Padre/Wx/Dialog/Preferences/PerlAutoComplete.pm
- cp lib/Padre/Wx/Dialog/OpenResource.pm blib/lib/Padre/Wx/Dialog/OpenResource.pm
- cp lib/Padre/Config/Upgrade.pm blib/lib/Padre/Config/Upgrade.pm
- cp lib/Padre/Wx/AuiManager.pm blib/lib/Padre/Wx/AuiManager.pm
- cp lib/Padre/Project/Perl.pm blib/lib/Padre/Project/Perl.pm
- cp lib/Padre/Document/Perl/QuickFix/IncludeModule.pm blib/lib/Padre/Document/Perl/QuickFix/IncludeModule.pm
- cp lib/Padre/QuickFix.pm blib/lib/Padre/QuickFix.pm
- cp lib/Padre/Desktop.pm blib/lib/Padre/Desktop.pm
- cp lib/Padre/Document/Perl/QuickFix.pm blib/lib/Padre/Document/Perl/QuickFix.pm
- cp lib/Padre/Wx/FBP/WhereFrom.pm blib/lib/Padre/Wx/FBP/WhereFrom.pm
- cp lib/Padre/DB/HostConfig.pm blib/lib/Padre/DB/HostConfig.pm
- cp lib/Padre/ProjectManager.pm blib/lib/Padre/ProjectManager.pm
- cp lib/Padre/Wx/FBP/Find.pm blib/lib/Padre/Wx/FBP/Find.pm
- cp lib/Padre/Wx/FunctionList.pm blib/lib/Padre/Wx/FunctionList.pm
- cp lib/Padre/Task/LexicalReplaceVariable.pm blib/lib/Padre/Task/LexicalReplaceVariable.pm
- cp lib/Padre/Wx/FBP/Sync.pm blib/lib/Padre/Wx/FBP/Sync.pm
- cp lib/Padre/Startup.pm blib/lib/Padre/Startup.pm
- cp lib/Padre/PluginBuilder.pm blib/lib/Padre/PluginBuilder.pm
- cp lib/Padre/Wx/Menubar.pm blib/lib/Padre/Wx/Menubar.pm
- cp lib/Padre/TaskWorker.pm blib/lib/Padre/TaskWorker.pm
- cp lib/Padre/Wx/Directory.pm blib/lib/Padre/Wx/Directory.pm
- cp lib/Padre/Task/Syntax.pm blib/lib/Padre/Task/Syntax.pm
- cp lib/Padre/Wx/Role/View.pm blib/lib/Padre/Wx/Role/View.pm
- cp lib/Padre/DB/RecentlyUsed.pm blib/lib/Padre/DB/RecentlyUsed.pm
- cp lib/Padre/DB/Migrate.pm blib/lib/Padre/DB/Migrate.pm
- cp lib/Padre/CPAN.pm blib/lib/Padre/CPAN.pm
- cp lib/Padre/Wx/Dialog/Positions.pm blib/lib/Padre/Wx/Dialog/Positions.pm
- cp lib/Padre/Project/Perl/Temp.pm blib/lib/Padre/Project/Perl/Temp.pm
- cp lib/Padre/Util/SVN.pm blib/lib/Padre/Util/SVN.pm
- cp lib/Padre/Task/FindVariableDeclaration.pm blib/lib/Padre/Task/FindVariableDeclaration.pm
- cp lib/Padre/Wx/Dialog/Advanced.pm blib/lib/Padre/Wx/Dialog/Advanced.pm
- cp lib/Padre/Command.pm blib/lib/Padre/Command.pm
- cp lib/Padre/Wx/Command.pm blib/lib/Padre/Wx/Command.pm
- cp lib/Padre/Wx/Role/Dwell.pm blib/lib/Padre/Wx/Role/Dwell.pm
- cp lib/Padre/Wx/Dialog/FindInFiles.pm blib/lib/Padre/Wx/Dialog/FindInFiles.pm
- cp lib/Padre/Project/Perl/MI.pm blib/lib/Padre/Project/Perl/MI.pm
- cp lib/Padre/DB/History.pm blib/lib/Padre/DB/History.pm
- cp lib/Padre/Document/Perl/PPILexer.pm blib/lib/Padre/Document/Perl/PPILexer.pm
- cp lib/Padre/PPI.pm blib/lib/Padre/PPI.pm
- cp lib/Padre/DB/Bookmark.pm blib/lib/Padre/DB/Bookmark.pm
- cp lib/Padre/Browser/POD.pm blib/lib/Padre/Browser/POD.pm
- cp lib/Padre/Browser.pm blib/lib/Padre/Browser.pm
- cp lib/Padre/Wx/Dialog/WizardPage.pm blib/lib/Padre/Wx/Dialog/WizardPage.pm
- cp lib/Padre/Util/FileBrowser.pm blib/lib/Padre/Util/FileBrowser.pm
- cp lib/Padre/Wx/App.pm blib/lib/Padre/Wx/App.pm
- cp lib/Padre/Wx/Outline.pm blib/lib/Padre/Wx/Outline.pm
- cp lib/Padre/Wx/Menu/Tools.pm blib/lib/Padre/Wx/Menu/Tools.pm
- cp lib/Padre/Wx/Dialog/SessionManager.pm blib/lib/Padre/Wx/Dialog/SessionManager.pm
- cp lib/Padre/Project/Perl/MB.pm blib/lib/Padre/Project/Perl/MB.pm
- cp lib/Padre/Wx/Nth.pm blib/lib/Padre/Wx/Nth.pm
- cp lib/Padre/Wx/Dialog/ModuleStart.pm blib/lib/Padre/Wx/Dialog/ModuleStart.pm
- cp lib/Padre/Config/Human.pm blib/lib/Padre/Config/Human.pm
- cp lib/Padre/Wx/Display.pm blib/lib/Padre/Wx/Display.pm
- cp lib/Padre/Wx/StatusBar.pm blib/lib/Padre/Wx/StatusBar.pm
- cp lib/Padre/Wx/Dialog/WindowList.pm blib/lib/Padre/Wx/Dialog/WindowList.pm
- cp lib/Padre/TaskHandle.pm blib/lib/Padre/TaskHandle.pm
- cp lib/Padre/Wx/Menu/File.pm blib/lib/Padre/Wx/Menu/File.pm
- cp lib/Padre/Task/File.pm blib/lib/Padre/Task/File.pm
- cp lib/Padre/Project/Perl/EUMM.pm blib/lib/Padre/Project/Perl/EUMM.pm
- cp lib/Padre/Wx/PodFrame.pm blib/lib/Padre/Wx/PodFrame.pm
- cp lib/Padre/Wx/Left.pm blib/lib/Padre/Wx/Left.pm
- cp lib/Padre/File/FTP.pm blib/lib/Padre/File/FTP.pm
- cp lib/Padre/Config/Host.pm blib/lib/Padre/Config/Host.pm
- cp lib/Padre/Document/Perl/Help.pm blib/lib/Padre/Document/Perl/Help.pm
- cp lib/Padre/Document/Config.pm blib/lib/Padre/Document/Config.pm
- cp lib/Padre/TaskProcess.pm blib/lib/Padre/TaskProcess.pm
- cp lib/Padre/Wx/Dialog/WhereFrom.pm blib/lib/Padre/Wx/Dialog/WhereFrom.pm
- cp lib/Padre/Wx/TreeCtrl/ScrollLock.pm blib/lib/Padre/Wx/TreeCtrl/ScrollLock.pm
- cp lib/Padre/Plugin.pm blib/lib/Padre/Plugin.pm
- cp lib/Padre/Wx/TodoList.pm blib/lib/Padre/Wx/TodoList.pm
- cp lib/Padre/Plugin/PopularityContest.pm blib/lib/Padre/Plugin/PopularityContest.pm
- cp lib/Padre/Project/Temp.pm blib/lib/Padre/Project/Temp.pm
- cp lib/Padre/Wx/Menu/View.pm blib/lib/Padre/Wx/Menu/View.pm
- cp lib/Padre/Wx/Menu/RightClick.pm blib/lib/Padre/Wx/Menu/RightClick.pm
- cp lib/Padre/Wx/Dialog/Sync2.pm blib/lib/Padre/Wx/Dialog/Sync2.pm
- cp lib/Padre/PPI/EndifyPod.pm blib/lib/Padre/PPI/EndifyPod.pm
- cp lib/Padre/Manual/Hacking.pod blib/lib/Padre/Manual/Hacking.pod
- cp lib/Padre/Wx/Notebook.pm blib/lib/Padre/Wx/Notebook.pm
- cp lib/Padre/Logger.pm blib/lib/Padre/Logger.pm
- cp lib/Padre/Project/Null.pm blib/lib/Padre/Project/Null.pm
- cp lib/Padre/Wx/Bottom.pm blib/lib/Padre/Wx/Bottom.pm
- cp lib/Padre/Lock.pm blib/lib/Padre/Lock.pm
- cp lib/Padre/Wx/Action.pm blib/lib/Padre/Wx/Action.pm
- cp lib/Padre/Task.pm blib/lib/Padre/Task.pm
- cp lib/Padre/Wx/FindInFiles.pm blib/lib/Padre/Wx/FindInFiles.pm
- cp lib/Padre/Manual.pod blib/lib/Padre/Manual.pod
- cp lib/Padre/Document/Perl/Outline.pm blib/lib/Padre/Document/Perl/Outline.pm
- cp lib/Padre/DB/Snippets.pod blib/lib/Padre/DB/Snippets.pod
- cp lib/Padre/Task/RecentFiles.pm blib/lib/Padre/Task/RecentFiles.pm
- cp lib/Padre/Wx/Dialog/Encode.pm blib/lib/Padre/Wx/Dialog/Encode.pm
- cp lib/Padre/Task/Browser.pm blib/lib/Padre/Task/Browser.pm
- cp lib/Padre/Wx/TreeCtrl.pm blib/lib/Padre/Wx/TreeCtrl.pm
- cp lib/Padre/Wx.pm blib/lib/Padre/Wx.pm
- cp lib/Padre/Wx/Menu/Refactor.pm blib/lib/Padre/Wx/Menu/Refactor.pm
- cp lib/Padre/Wx/Dialog/Wizard/Padre/Document.pm blib/lib/Padre/Wx/Dialog/Wizard/Padre/Document.pm
- cp lib/Padre/PPI/UpdateCopyright.pm blib/lib/Padre/PPI/UpdateCopyright.pm
- cp lib/Padre/Wx/About.pm blib/lib/Padre/Wx/About.pm
- cp lib/Padre/Task/FindUnmatchedBrace.pm blib/lib/Padre/Task/FindUnmatchedBrace.pm
- cp lib/Padre/PluginHandle.pm blib/lib/Padre/PluginHandle.pm
- cp lib/Padre/Wx/Editor.pm blib/lib/Padre/Wx/Editor.pm
- cp lib/Padre/DB/Session.pm blib/lib/Padre/DB/Session.pm
- cp lib/Padre/Wx/History/TextEntryDialog.pm blib/lib/Padre/Wx/History/TextEntryDialog.pm
- cp lib/Padre/Wx/Dialog/Search.pm blib/lib/Padre/Wx/Dialog/Search.pm
- cp lib/Padre/Test.pm blib/lib/Padre/Test.pm
- cp lib/Padre/Document/Perl/FunctionList.pm blib/lib/Padre/Document/Perl/FunctionList.pm
- cp lib/Padre/Wx/Dialog/Snippets.pm blib/lib/Padre/Wx/Dialog/Snippets.pm
- cp lib/Padre/Wx/Dialog/Find.pm blib/lib/Padre/Wx/Dialog/Find.pm
- cp lib/Padre/Wx/FileDropTarget.pm blib/lib/Padre/Wx/FileDropTarget.pm
- cp lib/Padre/Wx/Dialog/RefactorSelectFunction.pm blib/lib/Padre/Wx/Dialog/RefactorSelectFunction.pm
- cp lib/Padre/Wx/Menu/Perl.pm blib/lib/Padre/Wx/Menu/Perl.pm
- cp lib/Padre/Wx/Dialog.pm blib/lib/Padre/Wx/Dialog.pm
- cp lib/Padre/Plugin/Devel.pm blib/lib/Padre/Plugin/Devel.pm
- cp lib/Padre/Wx/Dialog/WizardSelector.pm blib/lib/Padre/Wx/Dialog/WizardSelector.pm
- cp lib/Padre/Config/Style.pm blib/lib/Padre/Config/Style.pm
- cp lib/Padre/Locker.pm blib/lib/Padre/Locker.pm
- cp lib/Padre/Wx/History/ComboBox.pm blib/lib/Padre/Wx/History/ComboBox.pm
- cp lib/Padre/Wx/Debugger.pm blib/lib/Padre/Wx/Debugger.pm
- cp lib/Padre/File.pm blib/lib/Padre/File.pm
- cp lib/Padre/Config.pm blib/lib/Padre/Config.pm
- cp lib/Padre/Wx/ActionQueue.pm blib/lib/Padre/Wx/ActionQueue.pm
- cp lib/Padre/Document/Perl/Beginner.pm blib/lib/Padre/Document/Perl/Beginner.pm
- cp lib/Padre/PluginManager.pm blib/lib/Padre/PluginManager.pm
- cp lib/Padre/Wx/Dialog/Wizard/Select.pm blib/lib/Padre/Wx/Dialog/Wizard/Select.pm
- cp lib/Padre/Task/FindInFiles.pm blib/lib/Padre/Task/FindInFiles.pm
- cp lib/Padre/Document/Perl/Syntax.pm blib/lib/Padre/Document/Perl/Syntax.pm
- cp lib/Padre/Help.pm blib/lib/Padre/Help.pm
- cp lib/Padre/Project/Perl/DZ.pm blib/lib/Padre/Project/Perl/DZ.pm
- cp lib/Padre/DB.pm blib/lib/Padre/DB.pm
- cp lib/Padre/Wx/Icon.pm blib/lib/Padre/Wx/Icon.pm
- cp lib/Padre/Wx/ActionLibrary.pm blib/lib/Padre/Wx/ActionLibrary.pm
- cp lib/Padre/Wx/Dialog/Sync.pm blib/lib/Padre/Wx/Dialog/Sync.pm
- cp lib/Padre/Task/Run.pm blib/lib/Padre/Task/Run.pm
- cp lib/Padre/Util/Win32.pm blib/lib/Padre/Util/Win32.pm
- cp lib/Padre/TaskThread.pm blib/lib/Padre/TaskThread.pm
- cp lib/Padre/DB/SyntaxHighlight.pm blib/lib/Padre/DB/SyntaxHighlight.pm
- cp lib/Padre/Wx/Dialog/HelpSearch.pm blib/lib/Padre/Wx/Dialog/HelpSearch.pm
- cp lib/Padre/Wx/Dialog/Form.pm blib/lib/Padre/Wx/Dialog/Form.pm
- cp lib/Padre/Wx/Dialog/Warning.pm blib/lib/Padre/Wx/Dialog/Warning.pm
- cp lib/Padre/File/Local.pm blib/lib/Padre/File/Local.pm
- cp lib/Padre/Wx/Dialog/FilterTool.pm blib/lib/Padre/Wx/Dialog/FilterTool.pm
- cp lib/Padre/Task/FunctionList.pm blib/lib/Padre/Task/FunctionList.pm
- cp script/padre blib/script/padre
- /usr/bin/perl5.12.3 "-Iinc" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/padre
- Manifying blib/man3/Padre::Document::Perl.3
- Manifying blib/man3/Padre::Wx::FindResult.3
- Manifying blib/man3/Padre::DB::Plugin.3
- Manifying blib/man3/Padre::MimeTypes.3
- Manifying blib/man3/Padre::Wx::Dialog::KeyBindings.3
- Manifying blib/man3/Padre::Wx::Progress.3
- Manifying blib/man3/Padre::Autosave.3
- Manifying blib/man3/Padre::Wx::Dialog::OpenURL.3
- Manifying blib/man3/Padre::Wx::HtmlWindow.3
- Manifying blib/man3/Padre::Plugin::My.3
- Manifying blib/man3/Padre::Wx::Main.3
- Manifying blib/man3/Padre::Wx::Dialog::Positions.3
- Manifying blib/man3/Padre::PPI::Transform.3
- Manifying blib/man3/Padre::Current.3
- Manifying blib/man3/Padre::Util::SVN.3
- Manifying blib/man3/Padre::Task::FindVariableDeclaration.3
- Manifying blib/man3/Padre::Wx::Dialog::Advanced.3
- Manifying blib/man3/Padre::Wx::Role::Dwell.3
- Manifying blib/man3/Padre::DB::History.3
- Manifying blib/man3/Padre::Wx::Wizard.3
- Manifying blib/man3/Padre::DB::Bookmark.3
- Manifying blib/man3/Padre::Browser.3
- Manifying blib/man3/Padre::Util::FileBrowser.3
- Manifying blib/man3/Padre::Wx::Dialog::WizardPage.3
- Manifying blib/man3/Padre::Wx::App.3
- Manifying blib/man3/Padre::Wx::Dialog::SessionManager.3
- Manifying blib/man3/Padre::Wx::Display.3
- Manifying blib/man3/Padre::Config::Human.3
- Manifying blib/man3/Padre::Wx::Dialog::Wizard::Padre::Plugin.3
- Manifying blib/man3/Padre::Wx::StatusBar.3
- Manifying blib/man3/Padre::Wx::Dialog::WindowList.3
- Manifying blib/man3/Padre::Task::File.3
- Manifying blib/man3/Padre::Wx::PodFrame.3
- Manifying blib/man3/Padre::Role::Task.3
- Manifying blib/man3/Padre::Config::Host.3
- Manifying blib/man3/Padre::Document::Perl::Help.3
- Manifying blib/man3/Padre::Document::Perl::QuickFix::StrictWarnings.3
- Manifying blib/man3/Padre::Wx::Dialog::Preferences.3
- Manifying blib/man3/Padre::Wx::TreeCtrl::ScrollLock.3
- Manifying blib/man3/Padre::Util.3
- Manifying blib/man3/Padre::Constant.3
- Manifying blib/man3/Padre::Perl.3
- Manifying blib/man3/Padre::Task::PPI.3
- Manifying blib/man3/Padre::Wx::Editor.3
- Manifying blib/man3/Padre::DB::Session.3
- Manifying blib/man3/Padre::Wx::Role::Conduit.3
- Manifying blib/man3/Padre::Locale.3
- Manifying blib/man3/Padre::Wx::Role::Dialog.3
- Manifying blib/man3/Padre.3
- Manifying blib/man3/Padre::Plugin.3
- Manifying blib/man3/Padre::Search.3
- Manifying blib/man3/Padre::Plugin::PopularityContest.3
- Manifying blib/man3/Padre::Project::Temp.3
- Manifying blib/man3/Padre::Wx::Dialog::DocStats.3
- Manifying blib/man3/Padre::Wx::Dialog::Preferences::File.3
- Manifying blib/man3/Padre::Document.3
- Manifying blib/man3/Padre::PPI::EndifyPod.3
- Manifying blib/man3/Padre::Util::Template.3
- Manifying blib/man3/Padre::Manual::Hacking.3
- Manifying blib/man3/Padre::Logger.3
- Manifying blib/man3/Padre::Wx::Action.3
- Manifying blib/man3/Padre::Task.3
- Manifying blib/man3/Padre::Pod2HTML.3
- Manifying blib/man3/Padre::Manual.3
- Manifying blib/man3/Padre::DB::Snippets.3
- Manifying blib/man3/Padre::Wx::Dialog::PluginManager.3
- Manifying blib/man3/Padre::TaskManager.3
- Manifying blib/man3/Padre::Task::LWP.3
- Manifying blib/man3/Padre::Wx::Browser.3
- Manifying blib/man3/Padre::Wx.3
- Manifying blib/man3/Padre::Wx::Dialog::Wizard::Padre::Document.3
- Manifying blib/man3/Padre::Task::IntroduceTemporaryVariable.3
- Manifying blib/man3/Padre::Wx::Dialog::Replace.3
- Manifying blib/man3/Padre::Wx::Dialog::Wizard::Perl::Module.3
- Manifying blib/man3/Padre::PPI::UpdateCopyright.3
- Manifying blib/man3/Padre::DB::LastPositionInFile.3
- Manifying blib/man3/Padre::Task::FindUnmatchedBrace.3
- Manifying blib/man3/Padre::Sync.3
- Manifying blib/man3/Padre::Transform.3
- Manifying blib/man3/Padre::Wx::Dialog::QuickMenuAccess.3
- Manifying blib/man3/Padre::Wx::Dialog::HelpSearch.3
- Manifying blib/man3/Padre::DB::SyntaxHighlight.3
- Manifying blib/man3/Padre::Task::Eval.3
- Manifying blib/man3/Padre::DB::SessionFile.3
- Manifying blib/man3/Padre::Wx::Dialog::Shortcut.3
- Manifying blib/man3/Padre::Wx::Dialog::FilterTool.3
- Manifying blib/man3/Padre::Wx::Dialog::SessionSave.3
- Manifying blib/man3/Padre::Wx::Role::Main.3
- Manifying blib/man3/Padre::Task::OpenResource.3
- Manifying blib/man3/Padre::Wx::Dialog::Goto.3
- Manifying blib/man3/Padre::Wx::Dialog::WizardSelector.3
- Manifying blib/man3/Padre::Plugin::Devel.3
- Manifying blib/man3/Padre::Wx::Dialog.3
- Manifying blib/man3/Padre::Browser::Document.3
- Manifying blib/man3/Padre::Wx::CPAN.3
- Manifying blib/man3/Padre::Wx::History::ComboBox.3
- Manifying blib/man3/Padre::Locker.3
- Manifying blib/man3/Padre::Wx::Dialog::RegexEditor.3
- Manifying blib/man3/Padre::Wx::Dialog::PerlFilter.3
- Manifying blib/man3/Padre::Wx::Dialog::Preferences::PerlAutoComplete.3
- Manifying blib/man3/Padre::Wx::Debugger.3
- Manifying blib/man3/Padre::Wx::Dialog::OpenResource.3
- Manifying blib/man3/Padre::Config::Upgrade.3
- Manifying blib/man3/Padre::File.3
- Manifying blib/man3/Padre::Document::Perl::QuickFix::IncludeModule.3
- Manifying blib/man3/Padre::Config.3
- Manifying blib/man3/Padre::QuickFix.3
- Manifying blib/man3/Padre::Desktop.3
- Manifying blib/man3/Padre::Document::Perl::QuickFix.3
- Manifying blib/man3/Padre::DB::HostConfig.3
- Manifying blib/man3/Padre::Wx::ActionQueue.3
- Manifying blib/man3/Padre::Wx::Dialog::Wizard::Select.3
- Manifying blib/man3/Padre::PluginManager.3
- Manifying blib/man3/Padre::Document::Perl::Beginner.3
- Manifying blib/man3/Padre::Help.3
- Manifying blib/man3/Padre::Task::LexicalReplaceVariable.3
- Manifying blib/man3/Padre::Startup.3
- Manifying blib/man3/Padre::PluginBuilder.3
- Manifying blib/man3/Padre::DB.3
- Manifying blib/man3/Padre::Wx::Dialog::Sync.3
- Manifying blib/man3/Padre::Util::Win32.3
- Manifying blib/man3/Padre::Wx::Dialog::Warning.3
- Manifying blib/man3/Padre::Wx::Dialog::Form.3
- Manifying blib/man3/Padre::Wx::Role::View.3
- Manifying blib/man3/Padre::DB::RecentlyUsed.3
- Manifying blib/man3/Padre::DB::Migrate.3
- PLAVEN/Padre-0.84.tar.gz
- /usr/bin/make -- OK
- Running make test
- blib/lib/auto/share/dist/Padre/locale -> blib/lib/auto/share/dist/Padre/locale
- blib/lib/auto/share/dist/Padre/locale/ko.po -> blib/lib/auto/share/dist/Padre/locale/ko.mo
- blib/lib/auto/share/dist/Padre/locale/no.po -> blib/lib/auto/share/dist/Padre/locale/no.mo
- blib/lib/auto/share/dist/Padre/locale/cz.po -> blib/lib/auto/share/dist/Padre/locale/cz.mo
- blib/lib/auto/share/dist/Padre/locale/hu.po -> blib/lib/auto/share/dist/Padre/locale/hu.mo
- blib/lib/auto/share/dist/Padre/locale/he.po -> blib/lib/auto/share/dist/Padre/locale/he.mo
- blib/lib/auto/share/dist/Padre/locale/de.po -> blib/lib/auto/share/dist/Padre/locale/de.mo
- blib/lib/auto/share/dist/Padre/locale/es-es.po -> blib/lib/auto/share/dist/Padre/locale/es-es.mo
- blib/lib/auto/share/dist/Padre/locale/it-it.po -> blib/lib/auto/share/dist/Padre/locale/it-it.mo
- blib/lib/auto/share/dist/Padre/locale/nl-nl.po -> blib/lib/auto/share/dist/Padre/locale/nl-nl.mo
- blib/lib/auto/share/dist/Padre/locale/pl.po -> blib/lib/auto/share/dist/Padre/locale/pl.mo
- blib/lib/auto/share/dist/Padre/locale/fa.po -> blib/lib/auto/share/dist/Padre/locale/fa.mo
- blib/lib/auto/share/dist/Padre/locale/ar.po -> blib/lib/auto/share/dist/Padre/locale/ar.mo
- blib/lib/auto/share/dist/Padre/locale/zh-tw.po -> blib/lib/auto/share/dist/Padre/locale/zh-tw.mo
- blib/lib/auto/share/dist/Padre/locale/fr-fr.po -> blib/lib/auto/share/dist/Padre/locale/fr-fr.mo
- blib/lib/auto/share/dist/Padre/locale/ru.po -> blib/lib/auto/share/dist/Padre/locale/ru.mo
- blib/lib/auto/share/dist/Padre/locale/zh-cn.po -> blib/lib/auto/share/dist/Padre/locale/zh-cn.mo
- blib/lib/auto/share/dist/Padre/locale/tr.po -> blib/lib/auto/share/dist/Padre/locale/tr.mo
- blib/lib/auto/share/dist/Padre/locale/ja.po -> blib/lib/auto/share/dist/Padre/locale/ja.mo
- blib/lib/auto/share/dist/Padre/locale/pt-br.po -> blib/lib/auto/share/dist/Padre/locale/pt-br.mo
- -blib/lib/auto/share/dist/Padre/locale/messages.pot
- PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t
- t/01-load.t ................ 1/44 # Tests find Wx: 0.98 wxWidgets 2.8.10
- t/01-load.t ................ ok
- t/02-new.t ................. ok
- t/03-wx.t .................. skipped: Sometimes fails for unknown reasons, skipping for release till fixed
- t/04-config.t .............. ok
- t/05-project.t ............. ok
- t/06-utils.t ............... ok
- t/07-version.t ............. ok
- t/08-style.t ............... ok
- t/14-warnings.t ............ ok
- t/15-locale.t .............. Can't locate Capture/Tiny.pm in @INC (@INC contains: /root/.cpan/build/Padre-0.84-KjA62O/inc /root/.cpan/build/Padre-0.84-KjA62O/blib/lib /root/.cpan/build/Padre-0.84-KjA62O/blib/arch /usr/lib64/perl5/site_perl/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.12.3 /usr/lib64/perl5/vendor_perl/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.12.3 /usr/lib64/perl5/5.12.3/x86_64-linux-thread-multi /usr/lib64/perl5/5.12.3 /usr/lib64/perl5/site_perl /usr/lib64/perl5/vendor_perl .) at t/15-locale.t line 6.
- BEGIN failed--compilation aborted at t/15-locale.t line 6.
- t/15-locale.t .............. Dubious, test returned 2 (wstat 512, 0x200)
- No subtests run
- t/16-messages.t ............ ok
- t/20_task_queue.t .......... ok
- t/21_task_thread.t ......... ok
- t/22_task_worker.t ......... ok
- t/23_task_chain.t .......... ok
- t/24_task_master.t ......... ok
- t/25_task_handle.t ......... ok
- t/26_task_eval.t ........... ok
- t/27_task_signal.t ......... ok
- t/28_task_manager.t ........ ok
- t/40-perl.t ................ ok
- t/41-perl-project.t ........ ok
- t/42-perl-project-temp.t ... ok
- t/43-perl-utils.t .......... ok
- t/44-perl-syntax.t ......... ok
- t/50-browser.t ............. skipped: Cannot run as root
- t/60-db.t .................. ok
- t/61-directory-path.t ...... ok
- t/62-migrate.t ............. ok
- t/70-document.t ............ ok
- t/72-dialog-html.t ......... ok
- t/73-display.t ............. ok
- t/74-history-combobox.t .... ok
- t/75-autocomplete.t ........ ok
- t/80-newline.t ............. ok
- t/81-search.t .............. ok
- t/82-plugin-manager.t ...... ok
- t/83-autosave.t ............ ok
- t/85-commandline.t ......... ok
- t/91-vi.t .................. ok
- t/92-padre-file.t .......... ok
- t/93-padre-filename-win.t .. ok
- t/94-padre-file-remote.t ... ok
- Test Summary Report
- -------------------
- t/15-locale.t (Wstat: 512 Tests: 0 Failed: 0)
- Non-zero exit status: 2
- Parse errors: No plan found in TAP output
- Files=43, Tests=1121, 90 wallclock secs ( 0.50 usr 0.18 sys + 28.22 cusr 3.44 csys = 32.34 CPU)
- Result: FAIL
- Failed 1/43 test programs. 0/1121 subtests failed.
- make: *** [test_dynamic] Error 255
- PLAVEN/Padre-0.84.tar.gz
- 2 dependencies missing (Capture::Tiny,Template::Tiny); additionally test harness failed
- /usr/bin/make test -- NOT OK
- //hint// to see the cpan-testers results for installing this module, try:
- reports PLAVEN/Padre-0.84.tar.gz
- Running make install
- make test had returned bad status, won't install without force
Advertisement
Add Comment
Please, Sign In to add comment