diogoleal

Untitled

May 13th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 118.00 KB | None | 0 0
  1. ➜ ~ su -
  2. Password:
  3.  
  4. "But Huey, you PROMISED!"
  5. "Tell 'em I lied."
  6.  
  7. root@Bree:~# cpan Padre
  8. CPAN: Storable loaded ok (v2.22)
  9. Going to read '/root/.cpan/Metadata'
  10. Database was generated on Fri, 13 May 2011 20:30:52 GMT
  11. Running install for module 'Padre'
  12. Running make for P/PL/PLAVEN/Padre-0.84.tar.gz
  13. CPAN: Digest::SHA loaded ok (v5.61)
  14. CPAN: Compress::Zlib loaded ok (v2.034)
  15. Checksum for /root/.cpan/sources/authors/id/P/PL/PLAVEN/Padre-0.84.tar.gz ok
  16. CPAN: File::Temp loaded ok (v0.22)
  17. CPAN: Parse::CPAN::Meta loaded ok (v1.4401)
  18. CPAN: CPAN::Meta loaded ok (v2.110930)
  19. CPAN: Module::CoreList loaded ok (v2.43)
  20.  
  21. CPAN.pm: Going to build P/PL/PLAVEN/Padre-0.84.tar.gz
  22.  
  23. Found locale en_US
  24. Found wxWidgets 2.8.10
  25. Found Wx.pm 0.98
  26. Checking if your kit is complete...
  27. Looks good
  28. Warning: prerequisite Capture::Tiny 0.06 not found.
  29. Warning: prerequisite Template::Tiny 0.11 not found.
  30. Writing Makefile for Padre
  31. Could not read metadata file. Falling back to other methods to determine prerequisites
  32. ---- Unsatisfied dependencies detected during ----
  33. ---- PLAVEN/Padre-0.84.tar.gz ----
  34. Capture::Tiny [requires]
  35. Template::Tiny [requires]
  36. Running make test
  37. Delayed until after prerequisites
  38. Running make install
  39. Delayed until after prerequisites
  40. Running install for module 'Capture::Tiny'
  41. Running make for D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz
  42. Checksum for /root/.cpan/sources/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz ok
  43.  
  44. CPAN.pm: Going to build D/DA/DAGOLDEN/Capture-Tiny-0.10.tar.gz
  45.  
  46. Checking if your kit is complete...
  47. Looks good
  48. Writing Makefile for Capture::Tiny
  49. cp lib/Capture/Tiny.pm blib/lib/Capture/Tiny.pm
  50. Manifying blib/man3/Capture::Tiny.3
  51. DAGOLDEN/Capture-Tiny-0.10.tar.gz
  52. /usr/bin/make -- OK
  53. CPAN: YAML loaded ok (v0.73)
  54. Running make test
  55. PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
  56. t/00-compile.t ............. ok
  57. t/01-Capture-Tiny.t ........ ok
  58. t/02-capture.t ............. ok
  59. t/03-tee.t ................. ok
  60. t/06-stdout-closed.t ....... ok
  61. t/07-stderr-closed.t ....... ok
  62. t/08-stdin-closed.t ........ 70/?
  63. # Failed test 'tee|perl|stderr|short - got STDERR'
  64. # at t/lib/Cases.pm line 30.
  65. # +----+---------------------------------------------------------------------------------+---+----------------------+
  66. # | Ln|Got | Ln|Expected |
  67. # +----+---------------------------------------------------------------------------------+---+----------------------+
  68. # * 1|'\n * 1|'STDERR:Hello World' *
  69. # * 2|=head1 NAME * | |
  70. # * 3|\n * | |
  71. # * 4|utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code * | |
  72. # * 5|\n * | |
  73. # * 6|=head1 SYNOPSIS * | |
  74. # * 7|\n * | |
  75. # * 8| use utf8; * | |
  76. # * 9| no utf8; * | |
  77. # * 10|\n * | |
  78. # * 11| # Convert the internal representation of a Perl scalar to/from UTF-8. * | |
  79. # * 12|\n * | |
  80. # * 13| $num_octets = utf8::upgrade($string); * | |
  81. # * 14| $success = utf8::downgrade($string[, FAIL_OK]); * | |
  82. # * 15|\n * | |
  83. # * 16| # Change each character of a Perl scalar to/from a series of * | |
  84. # * 17| # characters that represent the UTF-8 bytes of each original character. * | |
  85. # * 18|\n * | |
  86. # * 19| utf8::encode($string); # "\\x{100}" becomes "\\xc4\\x80" * | |
  87. # * 20| utf8::decode($string); # "\\xc4\\x80" becomes "\\x{100}" * | |
  88. # * 21|\n * | |
  89. # * 22| $flag = utf8::is_utf8(STRING); # since Perl 5.8.1 * | |
  90. # * 23| $flag = utf8::valid(STRING); * | |
  91. # * 24|\n * | |
  92. # * 25|=head1 DESCRIPTION * | |
  93. # * 26|\n * | |
  94. # * 27|The C<use utf8> pragma tells the Perl parser to allow UTF-8 in the * | |
  95. # * 28|program text in the current lexical scope (allow UTF-EBCDIC on EBCDIC based * | |
  96. # * 29|platforms). The C<no utf8> pragma tells Perl to switch back to treating * | |
  97. # * 30|the source text as literal bytes in the current lexical scope. * | |
  98. # * 31|\n * | |
  99. # * 32|B<Do not use this pragma for anything else than telling Perl that your * | |
  100. # * 33|script is written in UTF-8.> The utility functions described below are * | |
  101. # * 34|directly usable without C<use utf8;>. * | |
  102. # * 35|\n * | |
  103. # * 36|Because it is not possible to reliably tell UTF-8 from native 8 bit * | |
  104. # * 37|encodings, you need either a Byte Order Mark at the beginning of your * | |
  105. # * 38|source code, or C<use utf8;>, to instruct perl. * | |
  106. # * 39|\n * | |
  107. # * 40|When UTF-8 becomes the standard source format, this pragma will * | |
  108. # * 41|effectively become a no-op. For convenience in what follows the term * | |
  109. # * 42|I<UTF-X> is used to refer to UTF-8 on ASCII and ISO Latin based * | |
  110. # * 43|platforms and UTF-EBCDIC on EBCDIC based platforms. * | |
  111. # * 44|\n * | |
  112. # * 45|See also the effects of the C<-C> switch and its cousin, the * | |
  113. # * 46|C<$ENV{PERL_UNICODE}>, in L<perlrun>. * | |
  114. # * 47|\n * | |
  115. # * 48|Enabling the C<utf8> pragma has the following effect: * | |
  116. # * 49|\n * | |
  117. # * 50|=over 4 * | |
  118. # * 51|\n * | |
  119. # * 52|=item * * | |
  120. # * 53|\n * | |
  121. # * 54|Bytes in the source text that have their high-bit set will be treated * | |
  122. # * 55|as being part of a literal UTF-X sequence. This includes most * | |
  123. # * 56|literals such as identifier names, string constants, and constant * | |
  124. # * 57|regular expression patterns. * | |
  125. # * 58|\n * | |
  126. # * 59|On EBCDIC platforms characters in the Latin 1 character set are * | |
  127. # * 60|treated as being part of a literal UTF-EBCDIC character. * | |
  128. # * 61|\n * | |
  129. # * 62|=back * | |
  130. # * 63|\n * | |
  131. # * 64|Note that if you have bytes with the eighth bit on in your script * | |
  132. # * 65|(for example embedded Latin-1 in your string literals), C<use utf8> * | |
  133. # * 66|will be unhappy since the bytes are most probably not well-formed * | |
  134. # * 67|UTF-X. If you want to have such bytes under C<use utf8>, you can disable * | |
  135. # * 68|this pragma until the end the block (or file, if at top level) by * | |
  136. # * 69|C<no utf8;>. * | |
  137. # * 70|\n * | |
  138. # * 71|=head2 Utility functions * | |
  139. # * 72|\n * | |
  140. # * 73|The following functions are defined in the C<utf8::> package by the * | |
  141. # * 74|Perl core. You do not need to say C<use utf8> to use these and in fact * | |
  142. # * 75|you should not say that unless you really want to have UTF-8 source code. * | |
  143. # * 76|\n * | |
  144. # * 77|=over 4 * | |
  145. # * 78|\n * | |
  146. # * 79|=item * $num_octets = utf8::upgrade($string) * | |
  147. # * 80|\n * | |
  148. # * 81|Converts in-place the internal representation of the string from an octet * | |
  149. # * 82|sequence in the native encoding (Latin-1 or EBCDIC) to I<UTF-X>. The * | |
  150. # * 83|logical character sequence itself is unchanged. If I<$string> is already * | |
  151. # * 84|stored as I<UTF-X>, then this is a no-op. Returns the * | |
  152. # * 85|number of octets necessary to represent the string as I<UTF-X>. Can be * | |
  153. # * 86|used to make sure that the UTF-8 flag is on, so that C<\\w> or C<lc()> * | |
  154. # * 87|work as Unicode on strings containing characters in the range 0x80-0xFF * | |
  155. # * 88|(on ASCII and derivatives). * | |
  156. # * 89|\n * | |
  157. # * 90|B<Note that this function does not handle arbitrary encodings.> * | |
  158. # * 91|Therefore Encode is recommended for the general purposes; see also * | |
  159. # * 92|L<Encode>. * | |
  160. # * 93|\n * | |
  161. # * 94|=item * $success = utf8::downgrade($string[, FAIL_OK]) * | |
  162. # * 95|\n * | |
  163. # * 96|Converts in-place the the internal representation of the string from * | |
  164. # * 97|I<UTF-X> to the equivalent octet sequence in the native encoding (Latin-1 * | |
  165. # * 98|or EBCDIC). The logical character sequence itself is unchanged. If * | |
  166. # * 99|I<$string> is already stored as native 8 bit, then this is a no-op. Can * | |
  167. # * 100|be used to * | |
  168. # * 101|make sure that the UTF-8 flag is off, e.g. when you want to make sure * | |
  169. # * 102|that the substr() or length() function works with the usually faster * | |
  170. # * 103|byte algorithm. * | |
  171. # * 104|\n * | |
  172. # * 105|Fails if the original I<UTF-X> sequence cannot be represented in the * | |
  173. # * 106|native 8 bit encoding. On failure dies or, if the value of C<FAIL_OK> is * | |
  174. # * 107|true, returns false. * | |
  175. # * 108|\n * | |
  176. # * 109|Returns true on success. * | |
  177. # * 110|\n * | |
  178. # * 111|B<Note that this function does not handle arbitrary encodings.> * | |
  179. # * 112|Therefore Encode is recommended for the general purposes; see also * | |
  180. # * 113|L<Encode>. * | |
  181. # * 114|\n * | |
  182. # * 115|=item * utf8::encode($string) * | |
  183. # * 116|\n * | |
  184. # * 117|Converts in-place the character sequence to the corresponding octet * | |
  185. # * 118|sequence in I<UTF-X>. That is, every (possibly wide) character gets * | |
  186. # * 119|replaced with a sequence of one or more characters that represent the * | |
  187. # * 120|individual I<UTF-X> bytes of the character. The UTF8 flag is turned off. * | |
  188. # * 121|Returns nothing. * | |
  189. # * 122|\n * | |
  190. # * 123| my $a = "\\x{100}"; # $a contains one character, with ord 0x100 * | |
  191. # * 124| utf8::encode($a); # $a contains two characters, with ords 0xc4 and 0x80 * | |
  192. # * 125|\n * | |
  193. # * 126|B<Note that this function does not handle arbitrary encodings.> * | |
  194. # * 127|Therefore Encode is recommended for the general purposes; see also * | |
  195. # * 128|L<Encode>. * | |
  196. # * 129|\n * | |
  197. # * 130|=item * $success = utf8::decode($string) * | |
  198. # * 131|\n * | |
  199. # * 132|Attempts to convert in-place the octet sequence in I<UTF-X> to the * | |
  200. # * 133|corresponding character sequence. That is, it replaces each sequence of * | |
  201. # * 134|characters in the string whose ords represent a valid UTF-X byte * | |
  202. # * 135|sequence, with the corresponding single character. The UTF-8 flag is * | |
  203. # * 136|turned on only if the source string contains multiple-byte I<UTF-X> * | |
  204. # * 137|characters. If I<$string> is invalid as I<UTF-X>, returns false; * | |
  205. # * 138|otherwise returns true. * | |
  206. # * 139|\n * | |
  207. # * 140| my $a = "\\xc4\\x80"; # $a contains two characters, with ords 0xc4 and 0x80 * | |
  208. # * 141| utf8::decode($a); # $a contains one character, with ord 0x100 * | |
  209. # * 142|\n * | |
  210. # * 143|B<Note that this function does not handle arbitrary encodings.> * | |
  211. # * 144|Therefore Encode is recommended for the general purposes; see also * | |
  212. # * 145|L<Encode>. * | |
  213. # * 146|\n * | |
  214. # * 147|=item * $flag = utf8::is_utf8(STRING) * | |
  215. # * 148|\n * | |
  216. # * 149|(Since Perl 5.8.1) Test whether STRING is in UTF-8 internally. * | |
  217. # * 150|Functionally the same as Encode::is_utf8(). * | |
  218. # * 151|\n * | |
  219. # * 152|=item * $flag = utf8::valid(STRING) * | |
  220. # * 153|\n * | |
  221. # * 154|[INTERNAL] Test whether STRING is in a consistent state regarding * | |
  222. # * 155|UTF-8. Will return true is well-formed UTF-8 and has the UTF-8 flag * | |
  223. # * 156|on B<or> if string is held as bytes (both these states are \'consistent\'). * | |
  224. # * 157|Main reason for this routine is to allow Perl\'s testsuite to check * | |
  225. # * 158|that operations have left strings in a consistent state. You most * | |
  226. # * 159|probably want to use utf8::is_utf8() instead. * | |
  227. # * 160|\n * | |
  228. # * 161|=back * | |
  229. # * 162|\n * | |
  230. # * 163|C<utf8::encode> is like C<utf8::upgrade>, but the UTF8 flag is * | |
  231. # * 164|cleared. See L<perlunicode> for more on the UTF8 flag and the C API * | |
  232. # * 165|functions C<sv_utf8_upgrade>, C<sv_utf8_downgrade>, C<sv_utf8_encode>, * | |
  233. # * 166|and C<sv_utf8_decode>, which are wrapped by the Perl functions * | |
  234. # * 167|C<utf8::upgrade>, C<utf8::downgrade>, C<utf8::encode> and * | |
  235. # * 168|C<utf8::decode>. Also, the functions utf8::is_utf8, utf8::valid, * | |
  236. # * 169|utf8::encode, utf8::decode, utf8::upgrade, and utf8::downgrade are * | |
  237. # * 170|actually internal, and thus always available, without a C<require utf8> * | |
  238. # * 171|statement. * | |
  239. # * 172|\n * | |
  240. # * 173|=head1 BUGS * | |
  241. # * 174|\n * | |
  242. # * 175|One can have Unicode in identifier names, but not in package/class or * | |
  243. # * 176|subroutine names. While some limited functionality towards this does * | |
  244. # * 177|exist as of Perl 5.8.0, that is more accidental than designed; use of * | |
  245. # * 178|Unicode for the said purposes is unsupported. * | |
  246. # * 179|\n * | |
  247. # * 180|One reason of this unfinishedness is its (currently) inherent * | |
  248. # * 181|unportability: since both package names and subroutine names may need * | |
  249. # * 182|to be mapped to file and directory names, the Unicode capability of * | |
  250. # * 183|the filesystem becomes important-- and there unfortunately aren\'t * | |
  251. # * 184|portable answers. * | |
  252. # * 185|\n * | |
  253. # * 186|=head1 SEE ALSO * | |
  254. # * 187|\n * | |
  255. # * 188|L<perlunitut>, L<perluniintro>, L<perlrun>, L<bytes>, L<perlunicode> * | |
  256. # * 189|\n * | |
  257. # * 190|=cut * | |
  258. # * 191|' * | |
  259. # +----+---------------------------------------------------------------------------------+---+----------------------+
  260.  
  261. # Failed test 'tee|perl|stderr|short - tee STDERR'
  262. # at t/lib/Cases.pm line 30.
  263. # +----+---------------------------------------------------------------------------------+---+----------------------+
  264. # | Ln|Got | Ln|Expected |
  265. # +----+---------------------------------------------------------------------------------+---+----------------------+
  266. # * 1|'\n * 1|'STDERR:Hello World' *
  267. # * 2|=head1 NAME * | |
  268. # * 3|\n * | |
  269. # * 4|utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code * | |
  270. # * 5|\n * | |
  271. # * 6|=head1 SYNOPSIS * | |
  272. # * 7|\n * | |
  273. # * 8| use utf8; * | |
  274. # * 9| no utf8; * | |
  275. # * 10|\n * | |
  276. # * 11| # Convert the internal representation of a Perl scalar to/from UTF-8. * | |
  277. # * 12|\n * | |
  278. # * 13| $num_octets = utf8::upgrade($string); * | |
  279. # * 14| $success = utf8::downgrade($string[, FAIL_OK]); * | |
  280. # * 15|\n * | |
  281. # * 16| # Change each character of a Perl scalar to/from a series of * | |
  282. # * 17| # characters that represent the UTF-8 bytes of each original character. * | |
  283. # * 18|\n * | |
  284. # * 19| utf8::encode($string); # "\\x{100}" becomes "\\xc4\\x80" * | |
  285. # * 20| utf8::decode($string); # "\\xc4\\x80" becomes "\\x{100}" * | |
  286. # * 21|\n * | |
  287. # * 22| $flag = utf8::is_utf8(STRING); # since Perl 5.8.1 * | |
  288. # * 23| $flag = utf8::valid(STRING); * | |
  289. # * 24|\n * | |
  290. # * 25|=head1 DESCRIPTION * | |
  291. # * 26|\n * | |
  292. # * 27|The C<use utf8> pragma tells the Perl parser to allow UTF-8 in the * | |
  293. # * 28|program text in the current lexical scope (allow UTF-EBCDIC on EBCDIC based * | |
  294. # * 29|platforms). The C<no utf8> pragma tells Perl to switch back to treating * | |
  295. # * 30|the source text as literal bytes in the current lexical scope. * | |
  296. # * 31|\n * | |
  297. # * 32|B<Do not use this pragma for anything else than telling Perl that your * | |
  298. # * 33|script is written in UTF-8.> The utility functions described below are * | |
  299. # * 34|directly usable without C<use utf8;>. * | |
  300. # * 35|\n * | |
  301. # * 36|Because it is not possible to reliably tell UTF-8 from native 8 bit * | |
  302. # * 37|encodings, you need either a Byte Order Mark at the beginning of your * | |
  303. # * 38|source code, or C<use utf8;>, to instruct perl. * | |
  304. # * 39|\n * | |
  305. # * 40|When UTF-8 becomes the standard source format, this pragma will * | |
  306. # * 41|effectively become a no-op. For convenience in what follows the term * | |
  307. # * 42|I<UTF-X> is used to refer to UTF-8 on ASCII and ISO Latin based * | |
  308. # * 43|platforms and UTF-EBCDIC on EBCDIC based platforms. * | |
  309. # * 44|\n * | |
  310. # * 45|See also the effects of the C<-C> switch and its cousin, the * | |
  311. # * 46|C<$ENV{PERL_UNICODE}>, in L<perlrun>. * | |
  312. # * 47|\n * | |
  313. # * 48|Enabling the C<utf8> pragma has the following effect: * | |
  314. # * 49|\n * | |
  315. # * 50|=over 4 * | |
  316. # * 51|\n * | |
  317. # * 52|=item * * | |
  318. # * 53|\n * | |
  319. # * 54|Bytes in the source text that have their high-bit set will be treated * | |
  320. # * 55|as being part of a literal UTF-X sequence. This includes most * | |
  321. # * 56|literals such as identifier names, string constants, and constant * | |
  322. # * 57|regular expression patterns. * | |
  323. # * 58|\n * | |
  324. # * 59|On EBCDIC platforms characters in the Latin 1 character set are * | |
  325. # * 60|treated as being part of a literal UTF-EBCDIC character. * | |
  326. # * 61|\n * | |
  327. # * 62|=back * | |
  328. # * 63|\n * | |
  329. # * 64|Note that if you have bytes with the eighth bit on in your script * | |
  330. # * 65|(for example embedded Latin-1 in your string literals), C<use utf8> * | |
  331. # * 66|will be unhappy since the bytes are most probably not well-formed * | |
  332. # * 67|UTF-X. If you want to have such bytes under C<use utf8>, you can disable * | |
  333. # * 68|this pragma until the end the block (or file, if at top level) by * | |
  334. # * 69|C<no utf8;>. * | |
  335. # * 70|\n * | |
  336. # * 71|=head2 Utility functions * | |
  337. # * 72|\n * | |
  338. # * 73|The following functions are defined in the C<utf8::> package by the * | |
  339. # * 74|Perl core. You do not need to say C<use utf8> to use these and in fact * | |
  340. # * 75|you should not say that unless you really want to have UTF-8 source code. * | |
  341. # * 76|\n * | |
  342. # * 77|=over 4 * | |
  343. # * 78|\n * | |
  344. # * 79|=item * $num_octets = utf8::upgrade($string) * | |
  345. # * 80|\n * | |
  346. # * 81|Converts in-place the internal representation of the string from an octet * | |
  347. # * 82|sequence in the native encoding (Latin-1 or EBCDIC) to I<UTF-X>. The * | |
  348. # * 83|logical character sequence itself is unchanged. If I<$string> is already * | |
  349. # * 84|stored as I<UTF-X>, then this is a no-op. Returns the * | |
  350. # * 85|number of octets necessary to represent the string as I<UTF-X>. Can be * | |
  351. # * 86|used to make sure that the UTF-8 flag is on, so that C<\\w> or C<lc()> * | |
  352. # * 87|work as Unicode on strings containing characters in the range 0x80-0xFF * | |
  353. # * 88|(on ASCII and derivatives). * | |
  354. # * 89|\n * | |
  355. # * 90|B<Note that this function does not handle arbitrary encodings.> * | |
  356. # * 91|Therefore Encode is recommended for the general purposes; see also * | |
  357. # * 92|L<Encode>. * | |
  358. # * 93|\n * | |
  359. # * 94|=item * $success = utf8::downgrade($string[, FAIL_OK]) * | |
  360. # * 95|\n * | |
  361. # * 96|Converts in-place the the internal representation of the string from * | |
  362. # * 97|I<UTF-X> to the equivalent octet sequence in the native encoding (Latin-1 * | |
  363. # * 98|or EBCDIC). The logical character sequence itself is unchanged. If * | |
  364. # * 99|I<$string> is already stored as native 8 bit, then this is a no-op. Can * | |
  365. # * 100|be used to * | |
  366. # * 101|make sure that the UTF-8 flag is off, e.g. when you want to make sure * | |
  367. # * 102|that the substr() or length() function works with the usually faster * | |
  368. # * 103|byte algorithm. * | |
  369. # * 104|\n * | |
  370. # * 105|Fails if the original I<UTF-X> sequence cannot be represented in the * | |
  371. # * 106|native 8 bit encoding. On failure dies or, if the value of C<FAIL_OK> is * | |
  372. # * 107|true, returns false. * | |
  373. # * 108|\n * | |
  374. # * 109|Returns true on success. * | |
  375. # * 110|\n * | |
  376. # * 111|B<Note that this function does not handle arbitrary encodings.> * | |
  377. # * 112|Therefore Encode is recommended for the general purposes; see also * | |
  378. # * 113|L<Encode>. * | |
  379. # * 114|\n * | |
  380. # * 115|=item * utf8::encode($string) * | |
  381. # * 116|\n * | |
  382. # * 117|Converts in-place the character sequence to the corresponding octet * | |
  383. # * 118|sequence in I<UTF-X>. That is, every (possibly wide) character gets * | |
  384. # * 119|replaced with a sequence of one or more characters that represent the * | |
  385. # * 120|individual I<UTF-X> bytes of the character. The UTF8 flag is turned off. * | |
  386. # * 121|Returns nothing. * | |
  387. # * 122|\n * | |
  388. # * 123| my $a = "\\x{100}"; # $a contains one character, with ord 0x100 * | |
  389. # * 124| utf8::encode($a); # $a contains two characters, with ords 0xc4 and 0x80 * | |
  390. # * 125|\n * | |
  391. # * 126|B<Note that this function does not handle arbitrary encodings.> * | |
  392. # * 127|Therefore Encode is recommended for the general purposes; see also * | |
  393. # * 128|L<Encode>. * | |
  394. # * 129|\n * | |
  395. # * 130|=item * $success = utf8::decode($string) * | |
  396. # * 131|\n * | |
  397. # * 132|Attempts to convert in-place the octet sequence in I<UTF-X> to the * | |
  398. # * 133|corresponding character sequence. That is, it replaces each sequence of * | |
  399. # * 134|characters in the string whose ords represent a valid UTF-X byte * | |
  400. # * 135|sequence, with the corresponding single character. The UTF-8 flag is * | |
  401. # * 136|turned on only if the source string contains multiple-byte I<UTF-X> * | |
  402. # * 137|characters. If I<$string> is invalid as I<UTF-X>, returns false; * | |
  403. # * 138|otherwise returns true. * | |
  404. # * 139|\n * | |
  405. # * 140| my $a = "\\xc4\\x80"; # $a contains two characters, with ords 0xc4 and 0x80 * | |
  406. # * 141| utf8::decode($a); # $a contains one character, with ord 0x100 * | |
  407. # * 142|\n * | |
  408. # * 143|B<Note that this function does not handle arbitrary encodings.> * | |
  409. # * 144|Therefore Encode is recommended for the general purposes; see also * | |
  410. # * 145|L<Encode>. * | |
  411. # * 146|\n * | |
  412. # * 147|=item * $flag = utf8::is_utf8(STRING) * | |
  413. # * 148|\n * | |
  414. # * 149|(Since Perl 5.8.1) Test whether STRING is in UTF-8 internally. * | |
  415. # * 150|Functionally the same as Encode::is_utf8(). * | |
  416. # * 151|\n * | |
  417. # * 152|=item * $flag = utf8::valid(STRING) * | |
  418. # * 153|\n * | |
  419. # * 154|[INTERNAL] Test whether STRING is in a consistent state regarding * | |
  420. # * 155|UTF-8. Will return true is well-formed UTF-8 and has the UTF-8 flag * | |
  421. # * 156|on B<or> if string is held as bytes (both these states are \'consistent\'). * | |
  422. # * 157|Main reason for this routine is to allow Perl\'s testsuite to check * | |
  423. # * 158|that operations have left strings in a consistent state. You most * | |
  424. # * 159|probably want to use utf8::is_utf8() instead. * | |
  425. # * 160|\n * | |
  426. # * 161|=back * | |
  427. # * 162|\n * | |
  428. # * 163|C<utf8::encode> is like C<utf8::upgrade>, but the UTF8 flag is * | |
  429. # * 164|cleared. See L<perlunicode> for more on the UTF8 flag and the C API * | |
  430. # * 165|functions C<sv_utf8_upgrade>, C<sv_utf8_downgrade>, C<sv_utf8_encode>, * | |
  431. # * 166|and C<sv_utf8_decode>, which are wrapped by the Perl functions * | |
  432. # * 167|C<utf8::upgrade>, C<utf8::downgrade>, C<utf8::encode> and * | |
  433. # * 168|C<utf8::decode>. Also, the functions utf8::is_utf8, utf8::valid, * | |
  434. # * 169|utf8::encode, utf8::decode, utf8::upgrade, and utf8::downgrade are * | |
  435. # * 170|actually internal, and thus always available, without a C<require utf8> * | |
  436. # * 171|statement. * | |
  437. # * 172|\n * | |
  438. # * 173|=head1 BUGS * | |
  439. # * 174|\n * | |
  440. # * 175|One can have Unicode in identifier names, but not in package/class or * | |
  441. # * 176|subroutine names. While some limited functionality towards this does * | |
  442. # * 177|exist as of Perl 5.8.0, that is more accidental than designed; use of * | |
  443. # * 178|Unicode for the said purposes is unsupported. * | |
  444. # * 179|\n * | |
  445. # * 180|One reason of this unfinishedness is its (currently) inherent * | |
  446. # * 181|unportability: since both package names and subroutine names may need * | |
  447. # * 182|to be mapped to file and directory names, the Unicode capability of * | |
  448. # * 183|the filesystem becomes important-- and there unfortunately aren\'t * | |
  449. # * 184|portable answers. * | |
  450. # * 185|\n * | |
  451. # * 186|=head1 SEE ALSO * | |
  452. # * 187|\n * | |
  453. # * 188|L<perlunitut>, L<perluniintro>, L<perlrun>, L<bytes>, L<perlunicode> * | |
  454. # * 189|\n * | |
  455. # * 190|=cut * | |
  456. # * 191|' * | |
  457. # +----+---------------------------------------------------------------------------------+---+----------------------+
  458.  
  459. # Failed test 'tee|perl|stderr|multiline - got STDERR'
  460. # at t/lib/Cases.pm line 30.
  461. # +---+-----+---+----------------------+
  462. # | Ln|Got | Ln|Expected |
  463. # +---+-----+---+----------------------+
  464. # * 1|'' * 1|'STDERR:First line\n *
  465. # | | * 2|Second line *
  466. # | | * 3|' *
  467. # +---+-----+---+----------------------+
  468.  
  469. # Failed test 'tee|perl|stderr|multiline - tee STDERR'
  470. # at t/lib/Cases.pm line 30.
  471. # +---+-----+---+----------------------+
  472. # | Ln|Got | Ln|Expected |
  473. # +---+-----+---+----------------------+
  474. # * 1|'' * 1|'STDERR:First line\n *
  475. # | | * 2|Second line *
  476. # | | * 3|' *
  477. # +---+-----+---+----------------------+
  478.  
  479. # Failed test 'tee|perl|stderr|unicode - got STDERR'
  480. # at t/lib/Cases.pm line 30.
  481. # +---+-----+---+------------------------+
  482. # | Ln|Got | Ln|Expected |
  483. # +---+-----+---+------------------------+
  484. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  485. # | | * 2|' *
  486. # +---+-----+---+------------------------+
  487.  
  488. # Failed test 'tee|perl|stderr|unicode - tee STDERR'
  489. # at t/lib/Cases.pm line 30.
  490. # +---+-----+---+------------------------+
  491. # | Ln|Got | Ln|Expected |
  492. # +---+-----+---+------------------------+
  493. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  494. # | | * 2|' *
  495. # +---+-----+---+------------------------+
  496.  
  497. # Failed test 'tee|perl|both|short - got STDOUT'
  498. # at t/lib/Cases.pm line 30.
  499. # +---+-----+----------------------+
  500. # | Ln|Got |Expected |
  501. # +---+-----+----------------------+
  502. # * 1|'' |'STDOUT:Hello World' *
  503. # +---+-----+----------------------+
  504.  
  505. # Failed test 'tee|perl|both|short - tee STDOUT'
  506. # at t/lib/Cases.pm line 30.
  507. # +---+-----+----------------------+
  508. # | Ln|Got |Expected |
  509. # +---+-----+----------------------+
  510. # * 1|'' |'STDOUT:Hello World' *
  511. # +---+-----+----------------------+
  512.  
  513. # Failed test 'tee|perl|both|short - got STDERR'
  514. # at t/lib/Cases.pm line 30.
  515. # +---+-----+----------------------+
  516. # | Ln|Got |Expected |
  517. # +---+-----+----------------------+
  518. # * 1|'' |'STDERR:Hello World' *
  519. # +---+-----+----------------------+
  520.  
  521. # Failed test 'tee|perl|both|short - tee STDERR'
  522. # at t/lib/Cases.pm line 30.
  523. # +---+-----+----------------------+
  524. # | Ln|Got |Expected |
  525. # +---+-----+----------------------+
  526. # * 1|'' |'STDERR:Hello World' *
  527. # +---+-----+----------------------+
  528.  
  529. # Failed test 'tee|perl|both|multiline - got STDOUT'
  530. # at t/lib/Cases.pm line 30.
  531. # +---+-----+---+----------------------+
  532. # | Ln|Got | Ln|Expected |
  533. # +---+-----+---+----------------------+
  534. # * 1|'' * 1|'STDOUT:First line\n *
  535. # | | * 2|Second line *
  536. # | | * 3|' *
  537. # +---+-----+---+----------------------+
  538.  
  539. # Failed test 'tee|perl|both|multiline - tee STDOUT'
  540. # at t/lib/Cases.pm line 30.
  541. # +---+-----+---+----------------------+
  542. # | Ln|Got | Ln|Expected |
  543. # +---+-----+---+----------------------+
  544. # * 1|'' * 1|'STDOUT:First line\n *
  545. # | | * 2|Second line *
  546. # | | * 3|' *
  547. # +---+-----+---+----------------------+
  548.  
  549. # Failed test 'tee|perl|both|multiline - got STDERR'
  550. # at t/lib/Cases.pm line 30.
  551. # +---+-----+---+----------------------+
  552. # | Ln|Got | Ln|Expected |
  553. # +---+-----+---+----------------------+
  554. # * 1|'' * 1|'STDERR:First line\n *
  555. # | | * 2|Second line *
  556. # | | * 3|' *
  557. # +---+-----+---+----------------------+
  558.  
  559. # Failed test 'tee|perl|both|multiline - tee STDERR'
  560. # at t/lib/Cases.pm line 30.
  561. # +---+-----+---+----------------------+
  562. # | Ln|Got | Ln|Expected |
  563. # +---+-----+---+----------------------+
  564. # * 1|'' * 1|'STDERR:First line\n *
  565. # | | * 2|Second line *
  566. # | | * 3|' *
  567. # +---+-----+---+----------------------+
  568.  
  569. # Failed test 'tee|perl|both|unicode - got STDOUT'
  570. # at t/lib/Cases.pm line 30.
  571. # +---+-----+---+------------------------+
  572. # | Ln|Got | Ln|Expected |
  573. # +---+-----+---+------------------------+
  574. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  575. # | | * 2|' *
  576. # +---+-----+---+------------------------+
  577.  
  578. # Failed test 'tee|perl|both|unicode - tee STDOUT'
  579. # at t/lib/Cases.pm line 30.
  580. # +---+-----+---+------------------------+
  581. # | Ln|Got | Ln|Expected |
  582. # +---+-----+---+------------------------+
  583. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  584. # | | * 2|' *
  585. # +---+-----+---+------------------------+
  586.  
  587. # Failed test 'tee|perl|both|unicode - got STDERR'
  588. # at t/lib/Cases.pm line 30.
  589. # +---+-----+---+------------------------+
  590. # | Ln|Got | Ln|Expected |
  591. # +---+-----+---+------------------------+
  592. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  593. # | | * 2|' *
  594. # +---+-----+---+------------------------+
  595.  
  596. # Failed test 'tee|perl|both|unicode - tee STDERR'
  597. # at t/lib/Cases.pm line 30.
  598. # +---+-----+---+------------------------+
  599. # | Ln|Got | Ln|Expected |
  600. # +---+-----+---+------------------------+
  601. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  602. # | | * 2|' *
  603. # +---+-----+---+------------------------+
  604.  
  605. # Failed test 'tee|perl|stdout|short - got STDOUT'
  606. # at t/lib/Cases.pm line 30.
  607. # +---+-----+----------------------+
  608. # | Ln|Got |Expected |
  609. # +---+-----+----------------------+
  610. # * 1|'' |'STDOUT:Hello World' *
  611. # +---+-----+----------------------+
  612.  
  613. # Failed test 'tee|perl|stdout|short - tee STDOUT'
  614. # at t/lib/Cases.pm line 30.
  615. # +---+-----+----------------------+
  616. # | Ln|Got |Expected |
  617. # +---+-----+----------------------+
  618. # * 1|'' |'STDOUT:Hello World' *
  619. # +---+-----+----------------------+
  620.  
  621. # Failed test 'tee|perl|stdout|multiline - got STDOUT'
  622. # at t/lib/Cases.pm line 30.
  623. # +---+-----+---+----------------------+
  624. # | Ln|Got | Ln|Expected |
  625. # +---+-----+---+----------------------+
  626. # * 1|'' * 1|'STDOUT:First line\n *
  627. # | | * 2|Second line *
  628. # | | * 3|' *
  629. # +---+-----+---+----------------------+
  630.  
  631. # Failed test 'tee|perl|stdout|multiline - tee STDOUT'
  632. # at t/lib/Cases.pm line 30.
  633. # +---+-----+---+----------------------+
  634. # | Ln|Got | Ln|Expected |
  635. # +---+-----+---+----------------------+
  636. # * 1|'' * 1|'STDOUT:First line\n *
  637. # | | * 2|Second line *
  638. # | | * 3|' *
  639. # +---+-----+---+----------------------+
  640.  
  641. # Failed test 'tee|perl|stdout|unicode - got STDOUT'
  642. # at t/lib/Cases.pm line 30.
  643. # +---+-----+---+------------------------+
  644. # | Ln|Got | Ln|Expected |
  645. # +---+-----+---+------------------------+
  646. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  647. # | | * 2|' *
  648. # +---+-----+---+------------------------+
  649.  
  650. # Failed test 'tee|perl|stdout|unicode - tee STDOUT'
  651. # at t/lib/Cases.pm line 30.
  652. # +---+-----+---+------------------------+
  653. # | Ln|Got | Ln|Expected |
  654. # +---+-----+---+------------------------+
  655. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  656. # | | * 2|' *
  657. # +---+-----+---+------------------------+
  658.  
  659. # Failed test 'tee|sys|stderr|short - got STDERR'
  660. # at t/lib/Cases.pm line 30.
  661. # +---+-----+----------------------+
  662. # | Ln|Got |Expected |
  663. # +---+-----+----------------------+
  664. # * 1|'' |'STDERR:Hello World' *
  665. # +---+-----+----------------------+
  666.  
  667. # Failed test 'tee|sys|stderr|short - tee STDERR'
  668. # at t/lib/Cases.pm line 30.
  669. # +---+-----+----------------------+
  670. # | Ln|Got |Expected |
  671. # +---+-----+----------------------+
  672. # * 1|'' |'STDERR:Hello World' *
  673. # +---+-----+----------------------+
  674.  
  675. # Failed test 'tee|sys|stderr|multiline - got STDERR'
  676. # at t/lib/Cases.pm line 30.
  677. # +---+-----+---+----------------------+
  678. # | Ln|Got | Ln|Expected |
  679. # +---+-----+---+----------------------+
  680. # * 1|'' * 1|'STDERR:First line\n *
  681. # | | * 2|Second line *
  682. # | | * 3|' *
  683. # +---+-----+---+----------------------+
  684.  
  685. # Failed test 'tee|sys|stderr|multiline - tee STDERR'
  686. # at t/lib/Cases.pm line 30.
  687. # +---+-----+---+----------------------+
  688. # | Ln|Got | Ln|Expected |
  689. # +---+-----+---+----------------------+
  690. # * 1|'' * 1|'STDERR:First line\n *
  691. # | | * 2|Second line *
  692. # | | * 3|' *
  693. # +---+-----+---+----------------------+
  694.  
  695. # Failed test 'tee|sys|stderr|unicode - got STDERR'
  696. # at t/lib/Cases.pm line 30.
  697. # +---+-----+---+------------------------+
  698. # | Ln|Got | Ln|Expected |
  699. # +---+-----+---+------------------------+
  700. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  701. # | | * 2|' *
  702. # +---+-----+---+------------------------+
  703.  
  704. # Failed test 'tee|sys|stderr|unicode - tee STDERR'
  705. # at t/lib/Cases.pm line 30.
  706. # +---+-----+---+------------------------+
  707. # | Ln|Got | Ln|Expected |
  708. # +---+-----+---+------------------------+
  709. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  710. # | | * 2|' *
  711. # +---+-----+---+------------------------+
  712.  
  713. # Failed test 'tee|sys|both|short - got STDOUT'
  714. # at t/lib/Cases.pm line 30.
  715. # +---+-----+----------------------+
  716. # | Ln|Got |Expected |
  717. # +---+-----+----------------------+
  718. # * 1|'' |'STDOUT:Hello World' *
  719. # +---+-----+----------------------+
  720.  
  721. # Failed test 'tee|sys|both|short - tee STDOUT'
  722. # at t/lib/Cases.pm line 30.
  723. # +---+-----+----------------------+
  724. # | Ln|Got |Expected |
  725. # +---+-----+----------------------+
  726. # * 1|'' |'STDOUT:Hello World' *
  727. # +---+-----+----------------------+
  728.  
  729. # Failed test 'tee|sys|both|short - got STDERR'
  730. # at t/lib/Cases.pm line 30.
  731. # +---+-----+----------------------+
  732. # | Ln|Got |Expected |
  733. # +---+-----+----------------------+
  734. # * 1|'' |'STDERR:Hello World' *
  735. # +---+-----+----------------------+
  736.  
  737. # Failed test 'tee|sys|both|short - tee STDERR'
  738. # at t/lib/Cases.pm line 30.
  739. # +---+-----+----------------------+
  740. # | Ln|Got |Expected |
  741. # +---+-----+----------------------+
  742. # * 1|'' |'STDERR:Hello World' *
  743. # +---+-----+----------------------+
  744. t/08-stdin-closed.t ........ 144/?
  745. # Failed test 'tee|sys|both|multiline - got STDOUT'
  746. # at t/lib/Cases.pm line 30.
  747. # +---+-----+---+----------------------+
  748. # | Ln|Got | Ln|Expected |
  749. # +---+-----+---+----------------------+
  750. # * 1|'' * 1|'STDOUT:First line\n *
  751. # | | * 2|Second line *
  752. # | | * 3|' *
  753. # +---+-----+---+----------------------+
  754.  
  755. # Failed test 'tee|sys|both|multiline - tee STDOUT'
  756. # at t/lib/Cases.pm line 30.
  757. # +---+-----+---+----------------------+
  758. # | Ln|Got | Ln|Expected |
  759. # +---+-----+---+----------------------+
  760. # * 1|'' * 1|'STDOUT:First line\n *
  761. # | | * 2|Second line *
  762. # | | * 3|' *
  763. # +---+-----+---+----------------------+
  764.  
  765. # Failed test 'tee|sys|both|multiline - got STDERR'
  766. # at t/lib/Cases.pm line 30.
  767. # +---+-----+---+----------------------+
  768. # | Ln|Got | Ln|Expected |
  769. # +---+-----+---+----------------------+
  770. # * 1|'' * 1|'STDERR:First line\n *
  771. # | | * 2|Second line *
  772. # | | * 3|' *
  773. # +---+-----+---+----------------------+
  774.  
  775. # Failed test 'tee|sys|both|multiline - tee STDERR'
  776. # at t/lib/Cases.pm line 30.
  777. # +---+-----+---+----------------------+
  778. # | Ln|Got | Ln|Expected |
  779. # +---+-----+---+----------------------+
  780. # * 1|'' * 1|'STDERR:First line\n *
  781. # | | * 2|Second line *
  782. # | | * 3|' *
  783. # +---+-----+---+----------------------+
  784.  
  785. # Failed test 'tee|sys|both|unicode - got STDOUT'
  786. # at t/lib/Cases.pm line 30.
  787. # +---+-----+---+------------------------+
  788. # | Ln|Got | Ln|Expected |
  789. # +---+-----+---+------------------------+
  790. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  791. # | | * 2|' *
  792. # +---+-----+---+------------------------+
  793.  
  794. # Failed test 'tee|sys|both|unicode - tee STDOUT'
  795. # at t/lib/Cases.pm line 30.
  796. # +---+-----+---+------------------------+
  797. # | Ln|Got | Ln|Expected |
  798. # +---+-----+---+------------------------+
  799. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  800. # | | * 2|' *
  801. # +---+-----+---+------------------------+
  802.  
  803. # Failed test 'tee|sys|both|unicode - got STDERR'
  804. # at t/lib/Cases.pm line 30.
  805. # +---+-----+---+------------------------+
  806. # | Ln|Got | Ln|Expected |
  807. # +---+-----+---+------------------------+
  808. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  809. # | | * 2|' *
  810. # +---+-----+---+------------------------+
  811.  
  812. # Failed test 'tee|sys|both|unicode - tee STDERR'
  813. # at t/lib/Cases.pm line 30.
  814. # +---+-----+---+------------------------+
  815. # | Ln|Got | Ln|Expected |
  816. # +---+-----+---+------------------------+
  817. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  818. # | | * 2|' *
  819. # +---+-----+---+------------------------+
  820.  
  821. # Failed test 'tee|sys|stdout|short - got STDOUT'
  822. # at t/lib/Cases.pm line 30.
  823. # +---+-----+----------------------+
  824. # | Ln|Got |Expected |
  825. # +---+-----+----------------------+
  826. # * 1|'' |'STDOUT:Hello World' *
  827. # +---+-----+----------------------+
  828.  
  829. # Failed test 'tee|sys|stdout|short - tee STDOUT'
  830. # at t/lib/Cases.pm line 30.
  831. # +---+-----+----------------------+
  832. # | Ln|Got |Expected |
  833. # +---+-----+----------------------+
  834. # * 1|'' |'STDOUT:Hello World' *
  835. # +---+-----+----------------------+
  836.  
  837. # Failed test 'tee|sys|stdout|multiline - got STDOUT'
  838. # at t/lib/Cases.pm line 30.
  839. # +---+-----+---+----------------------+
  840. # | Ln|Got | Ln|Expected |
  841. # +---+-----+---+----------------------+
  842. # * 1|'' * 1|'STDOUT:First line\n *
  843. # | | * 2|Second line *
  844. # | | * 3|' *
  845. # +---+-----+---+----------------------+
  846.  
  847. # Failed test 'tee|sys|stdout|multiline - tee STDOUT'
  848. # at t/lib/Cases.pm line 30.
  849. # +---+-----+---+----------------------+
  850. # | Ln|Got | Ln|Expected |
  851. # +---+-----+---+----------------------+
  852. # * 1|'' * 1|'STDOUT:First line\n *
  853. # | | * 2|Second line *
  854. # | | * 3|' *
  855. # +---+-----+---+----------------------+
  856.  
  857. # Failed test 'tee|sys|stdout|unicode - got STDOUT'
  858. # at t/lib/Cases.pm line 30.
  859. # +---+-----+---+------------------------+
  860. # | Ln|Got | Ln|Expected |
  861. # +---+-----+---+------------------------+
  862. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  863. # | | * 2|' *
  864. # +---+-----+---+------------------------+
  865.  
  866. # Failed test 'tee|sys|stdout|unicode - tee STDOUT'
  867. # at t/lib/Cases.pm line 30.
  868. # +---+-----+---+------------------------+
  869. # | Ln|Got | Ln|Expected |
  870. # +---+-----+---+------------------------+
  871. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  872. # | | * 2|' *
  873. # +---+-----+---+------------------------+
  874.  
  875. # Failed test 'tee_scalar|perl|stderr|short - tee STDERR'
  876. # at t/lib/Cases.pm line 30.
  877. # +---+-----+----------------------+
  878. # | Ln|Got |Expected |
  879. # +---+-----+----------------------+
  880. # * 1|'' |'STDERR:Hello World' *
  881. # +---+-----+----------------------+
  882.  
  883. # Failed test 'tee_scalar|perl|stderr|multiline - tee STDERR'
  884. # at t/lib/Cases.pm line 30.
  885. # +---+-----+---+----------------------+
  886. # | Ln|Got | Ln|Expected |
  887. # +---+-----+---+----------------------+
  888. # * 1|'' * 1|'STDERR:First line\n *
  889. # | | * 2|Second line *
  890. # | | * 3|' *
  891. # +---+-----+---+----------------------+
  892.  
  893. # Failed test 'tee_scalar|perl|stderr|unicode - tee STDERR'
  894. # at t/lib/Cases.pm line 30.
  895. # +---+-----+---+------------------------+
  896. # | Ln|Got | Ln|Expected |
  897. # +---+-----+---+------------------------+
  898. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  899. # | | * 2|' *
  900. # +---+-----+---+------------------------+
  901.  
  902. # Failed test 'tee_scalar|perl|both|short - got STDOUT'
  903. # at t/lib/Cases.pm line 30.
  904. # +---+-----+----------------------+
  905. # | Ln|Got |Expected |
  906. # +---+-----+----------------------+
  907. # * 1|'' |'STDOUT:Hello World' *
  908. # +---+-----+----------------------+
  909.  
  910. # Failed test 'tee_scalar|perl|both|short - tee STDOUT'
  911. # at t/lib/Cases.pm line 30.
  912. # +---+-----+----------------------+
  913. # | Ln|Got |Expected |
  914. # +---+-----+----------------------+
  915. # * 1|'' |'STDOUT:Hello World' *
  916. # +---+-----+----------------------+
  917.  
  918. # Failed test 'tee_scalar|perl|both|short - tee STDERR'
  919. # at t/lib/Cases.pm line 30.
  920. # +---+-----+----------------------+
  921. # | Ln|Got |Expected |
  922. # +---+-----+----------------------+
  923. # * 1|'' |'STDERR:Hello World' *
  924. # +---+-----+----------------------+
  925.  
  926. # Failed test 'tee_scalar|perl|both|multiline - got STDOUT'
  927. # at t/lib/Cases.pm line 30.
  928. # +---+-----+---+----------------------+
  929. # | Ln|Got | Ln|Expected |
  930. # +---+-----+---+----------------------+
  931. # * 1|'' * 1|'STDOUT:First line\n *
  932. # | | * 2|Second line *
  933. # | | * 3|' *
  934. # +---+-----+---+----------------------+
  935.  
  936. # Failed test 'tee_scalar|perl|both|multiline - tee STDOUT'
  937. # at t/lib/Cases.pm line 30.
  938. # +---+-----+---+----------------------+
  939. # | Ln|Got | Ln|Expected |
  940. # +---+-----+---+----------------------+
  941. # * 1|'' * 1|'STDOUT:First line\n *
  942. # | | * 2|Second line *
  943. # | | * 3|' *
  944. # +---+-----+---+----------------------+
  945.  
  946. # Failed test 'tee_scalar|perl|both|multiline - tee STDERR'
  947. # at t/lib/Cases.pm line 30.
  948. # +---+-----+---+----------------------+
  949. # | Ln|Got | Ln|Expected |
  950. # +---+-----+---+----------------------+
  951. # * 1|'' * 1|'STDERR:First line\n *
  952. # | | * 2|Second line *
  953. # | | * 3|' *
  954. # +---+-----+---+----------------------+
  955.  
  956. # Failed test 'tee_scalar|perl|both|unicode - got STDOUT'
  957. # at t/lib/Cases.pm line 30.
  958. # +---+-----+---+------------------------+
  959. # | Ln|Got | Ln|Expected |
  960. # +---+-----+---+------------------------+
  961. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  962. # | | * 2|' *
  963. # +---+-----+---+------------------------+
  964.  
  965. # Failed test 'tee_scalar|perl|both|unicode - tee STDOUT'
  966. # at t/lib/Cases.pm line 30.
  967. # +---+-----+---+------------------------+
  968. # | Ln|Got | Ln|Expected |
  969. # +---+-----+---+------------------------+
  970. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  971. # | | * 2|' *
  972. # +---+-----+---+------------------------+
  973.  
  974. # Failed test 'tee_scalar|perl|both|unicode - tee STDERR'
  975. # at t/lib/Cases.pm line 30.
  976. # +---+-----+---+------------------------+
  977. # | Ln|Got | Ln|Expected |
  978. # +---+-----+---+------------------------+
  979. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  980. # | | * 2|' *
  981. # +---+-----+---+------------------------+
  982.  
  983. # Failed test 'tee_scalar|perl|stdout|short - got STDOUT'
  984. # at t/lib/Cases.pm line 30.
  985. # +---+-----+----------------------+
  986. # | Ln|Got |Expected |
  987. # +---+-----+----------------------+
  988. # * 1|'' |'STDOUT:Hello World' *
  989. # +---+-----+----------------------+
  990.  
  991. # Failed test 'tee_scalar|perl|stdout|short - tee STDOUT'
  992. # at t/lib/Cases.pm line 30.
  993. # +---+-----+----------------------+
  994. # | Ln|Got |Expected |
  995. # +---+-----+----------------------+
  996. # * 1|'' |'STDOUT:Hello World' *
  997. # +---+-----+----------------------+
  998.  
  999. # Failed test 'tee_scalar|perl|stdout|multiline - got STDOUT'
  1000. # at t/lib/Cases.pm line 30.
  1001. # +---+-----+---+----------------------+
  1002. # | Ln|Got | Ln|Expected |
  1003. # +---+-----+---+----------------------+
  1004. # * 1|'' * 1|'STDOUT:First line\n *
  1005. # | | * 2|Second line *
  1006. # | | * 3|' *
  1007. # +---+-----+---+----------------------+
  1008.  
  1009. # Failed test 'tee_scalar|perl|stdout|multiline - tee STDOUT'
  1010. # at t/lib/Cases.pm line 30.
  1011. # +---+-----+---+----------------------+
  1012. # | Ln|Got | Ln|Expected |
  1013. # +---+-----+---+----------------------+
  1014. # * 1|'' * 1|'STDOUT:First line\n *
  1015. # | | * 2|Second line *
  1016. # | | * 3|' *
  1017. # +---+-----+---+----------------------+
  1018.  
  1019. # Failed test 'tee_scalar|perl|stdout|unicode - got STDOUT'
  1020. # at t/lib/Cases.pm line 30.
  1021. # +---+-----+---+------------------------+
  1022. # | Ln|Got | Ln|Expected |
  1023. # +---+-----+---+------------------------+
  1024. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1025. # | | * 2|' *
  1026. # +---+-----+---+------------------------+
  1027.  
  1028. # Failed test 'tee_scalar|perl|stdout|unicode - tee STDOUT'
  1029. # at t/lib/Cases.pm line 30.
  1030. # +---+-----+---+------------------------+
  1031. # | Ln|Got | Ln|Expected |
  1032. # +---+-----+---+------------------------+
  1033. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1034. # | | * 2|' *
  1035. # +---+-----+---+------------------------+
  1036.  
  1037. # Failed test 'tee_scalar|sys|stderr|short - tee STDERR'
  1038. # at t/lib/Cases.pm line 30.
  1039. # +---+-----+----------------------+
  1040. # | Ln|Got |Expected |
  1041. # +---+-----+----------------------+
  1042. # * 1|'' |'STDERR:Hello World' *
  1043. # +---+-----+----------------------+
  1044.  
  1045. # Failed test 'tee_scalar|sys|stderr|multiline - tee STDERR'
  1046. # at t/lib/Cases.pm line 30.
  1047. # +---+-----+---+----------------------+
  1048. # | Ln|Got | Ln|Expected |
  1049. # +---+-----+---+----------------------+
  1050. # * 1|'' * 1|'STDERR:First line\n *
  1051. # | | * 2|Second line *
  1052. # | | * 3|' *
  1053. # +---+-----+---+----------------------+
  1054.  
  1055. # Failed test 'tee_scalar|sys|stderr|unicode - tee STDERR'
  1056. # at t/lib/Cases.pm line 30.
  1057. # +---+-----+---+------------------------+
  1058. # | Ln|Got | Ln|Expected |
  1059. # +---+-----+---+------------------------+
  1060. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  1061. # | | * 2|' *
  1062. # +---+-----+---+------------------------+
  1063.  
  1064. # Failed test 'tee_scalar|sys|both|short - got STDOUT'
  1065. # at t/lib/Cases.pm line 30.
  1066. # +---+-----+----------------------+
  1067. # | Ln|Got |Expected |
  1068. # +---+-----+----------------------+
  1069. # * 1|'' |'STDOUT:Hello World' *
  1070. # +---+-----+----------------------+
  1071.  
  1072. # Failed test 'tee_scalar|sys|both|short - tee STDOUT'
  1073. # at t/lib/Cases.pm line 30.
  1074. # +---+-----+----------------------+
  1075. # | Ln|Got |Expected |
  1076. # +---+-----+----------------------+
  1077. # * 1|'' |'STDOUT:Hello World' *
  1078. # +---+-----+----------------------+
  1079.  
  1080. # Failed test 'tee_scalar|sys|both|short - tee STDERR'
  1081. # at t/lib/Cases.pm line 30.
  1082. # +---+-----+----------------------+
  1083. # | Ln|Got |Expected |
  1084. # +---+-----+----------------------+
  1085. # * 1|'' |'STDERR:Hello World' *
  1086. # +---+-----+----------------------+
  1087.  
  1088. # Failed test 'tee_scalar|sys|both|multiline - got STDOUT'
  1089. # at t/lib/Cases.pm line 30.
  1090. # +---+-----+---+----------------------+
  1091. # | Ln|Got | Ln|Expected |
  1092. # +---+-----+---+----------------------+
  1093. # * 1|'' * 1|'STDOUT:First line\n *
  1094. # | | * 2|Second line *
  1095. # | | * 3|' *
  1096. # +---+-----+---+----------------------+
  1097.  
  1098. # Failed test 'tee_scalar|sys|both|multiline - tee STDOUT'
  1099. # at t/lib/Cases.pm line 30.
  1100. # +---+-----+---+----------------------+
  1101. # | Ln|Got | Ln|Expected |
  1102. # +---+-----+---+----------------------+
  1103. # * 1|'' * 1|'STDOUT:First line\n *
  1104. # | | * 2|Second line *
  1105. # | | * 3|' *
  1106. # +---+-----+---+----------------------+
  1107.  
  1108. # Failed test 'tee_scalar|sys|both|multiline - tee STDERR'
  1109. # at t/lib/Cases.pm line 30.
  1110. # +---+-----+---+----------------------+
  1111. # | Ln|Got | Ln|Expected |
  1112. # +---+-----+---+----------------------+
  1113. # * 1|'' * 1|'STDERR:First line\n *
  1114. # | | * 2|Second line *
  1115. # | | * 3|' *
  1116. # +---+-----+---+----------------------+
  1117.  
  1118. # Failed test 'tee_scalar|sys|both|unicode - got STDOUT'
  1119. # at t/lib/Cases.pm line 30.
  1120. # +---+-----+---+------------------------+
  1121. # | Ln|Got | Ln|Expected |
  1122. # +---+-----+---+------------------------+
  1123. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1124. # | | * 2|' *
  1125. # +---+-----+---+------------------------+
  1126.  
  1127. # Failed test 'tee_scalar|sys|both|unicode - tee STDOUT'
  1128. # at t/lib/Cases.pm line 30.
  1129. # +---+-----+---+------------------------+
  1130. # | Ln|Got | Ln|Expected |
  1131. # +---+-----+---+------------------------+
  1132. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1133. # | | * 2|' *
  1134. # +---+-----+---+------------------------+
  1135.  
  1136. # Failed test 'tee_scalar|sys|both|unicode - tee STDERR'
  1137. # at t/lib/Cases.pm line 30.
  1138. # +---+-----+---+------------------------+
  1139. # | Ln|Got | Ln|Expected |
  1140. # +---+-----+---+------------------------+
  1141. # * 1|'' * 1|'STDERR:Hi! \x{263a}\n *
  1142. # | | * 2|' *
  1143. # +---+-----+---+------------------------+
  1144.  
  1145. # Failed test 'tee_scalar|sys|stdout|short - got STDOUT'
  1146. # at t/lib/Cases.pm line 30.
  1147. # +---+-----+----------------------+
  1148. # | Ln|Got |Expected |
  1149. # +---+-----+----------------------+
  1150. # * 1|'' |'STDOUT:Hello World' *
  1151. # +---+-----+----------------------+
  1152.  
  1153. # Failed test 'tee_scalar|sys|stdout|short - tee STDOUT'
  1154. # at t/lib/Cases.pm line 30.
  1155. # +---+-----+----------------------+
  1156. # | Ln|Got |Expected |
  1157. # +---+-----+----------------------+
  1158. # * 1|'' |'STDOUT:Hello World' *
  1159. # +---+-----+----------------------+
  1160.  
  1161. # Failed test 'tee_scalar|sys|stdout|multiline - got STDOUT'
  1162. # at t/lib/Cases.pm line 30.
  1163. # +---+-----+---+----------------------+
  1164. # | Ln|Got | Ln|Expected |
  1165. # +---+-----+---+----------------------+
  1166. # * 1|'' * 1|'STDOUT:First line\n *
  1167. # | | * 2|Second line *
  1168. # | | * 3|' *
  1169. # +---+-----+---+----------------------+
  1170.  
  1171. # Failed test 'tee_scalar|sys|stdout|multiline - tee STDOUT'
  1172. # at t/lib/Cases.pm line 30.
  1173. # +---+-----+---+----------------------+
  1174. # | Ln|Got | Ln|Expected |
  1175. # +---+-----+---+----------------------+
  1176. # * 1|'' * 1|'STDOUT:First line\n *
  1177. # | | * 2|Second line *
  1178. # | | * 3|' *
  1179. # +---+-----+---+----------------------+
  1180.  
  1181. # Failed test 'tee_scalar|sys|stdout|unicode - got STDOUT'
  1182. # at t/lib/Cases.pm line 30.
  1183. # +---+-----+---+------------------------+
  1184. # | Ln|Got | Ln|Expected |
  1185. # +---+-----+---+------------------------+
  1186. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1187. # | | * 2|' *
  1188. # +---+-----+---+------------------------+
  1189.  
  1190. # Failed test 'tee_scalar|sys|stdout|unicode - tee STDOUT'
  1191. # at t/lib/Cases.pm line 30.
  1192. # +---+-----+---+------------------------+
  1193. # | Ln|Got | Ln|Expected |
  1194. # +---+-----+---+------------------------+
  1195. # * 1|'' * 1|'STDOUT:Hi! \x{263a}\n *
  1196. # | | * 2|' *
  1197. # +---+-----+---+------------------------+
  1198.  
  1199. # Failed test 'tee_merged|perl|stderr|short - got STDERR'
  1200. # at t/lib/Cases.pm line 173.
  1201. # ''
  1202. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1203.  
  1204. # Failed test 'tee_merged|perl|stderr|short - tee STDOUT (STDERR)'
  1205. # at t/lib/Cases.pm line 175.
  1206. # ''
  1207. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1208.  
  1209. # Failed test 'tee_merged|perl|stderr|multiline - got STDERR'
  1210. # at t/lib/Cases.pm line 173.
  1211. # ''
  1212. # doesn't match '(?-xism:STDERR\:First\ line\
  1213. # Second\ line\
  1214. # )'
  1215.  
  1216. # Failed test 'tee_merged|perl|stderr|multiline - tee STDOUT (STDERR)'
  1217. # at t/lib/Cases.pm line 175.
  1218. # ''
  1219. # doesn't match '(?-xism:STDERR\:First\ line\
  1220. # Second\ line\
  1221. # )'
  1222. t/08-stdin-closed.t ........ 228/?
  1223. # Failed test 'tee_merged|perl|stderr|unicode - got STDERR'
  1224. # at t/lib/Cases.pm line 173.
  1225. # ''
  1226. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1227. # )'
  1228.  
  1229. # Failed test 'tee_merged|perl|stderr|unicode - tee STDOUT (STDERR)'
  1230. # at t/lib/Cases.pm line 175.
  1231. # ''
  1232. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1233. # )'
  1234.  
  1235. # Failed test 'tee_merged|perl|both|short - got STDOUT'
  1236. # at t/lib/Cases.pm line 172.
  1237. # ''
  1238. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1239.  
  1240. # Failed test 'tee_merged|perl|both|short - got STDERR'
  1241. # at t/lib/Cases.pm line 173.
  1242. # ''
  1243. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1244.  
  1245. # Failed test 'tee_merged|perl|both|short - tee STDOUT (STDOUT)'
  1246. # at t/lib/Cases.pm line 174.
  1247. # ''
  1248. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1249.  
  1250. # Failed test 'tee_merged|perl|both|short - tee STDOUT (STDERR)'
  1251. # at t/lib/Cases.pm line 175.
  1252. # ''
  1253. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1254.  
  1255. # Failed test 'tee_merged|perl|both|multiline - got STDOUT'
  1256. # at t/lib/Cases.pm line 172.
  1257. # ''
  1258. # doesn't match '(?-xism:STDOUT\:First\ line\
  1259. # Second\ line\
  1260. # )'
  1261.  
  1262. # Failed test 'tee_merged|perl|both|multiline - got STDERR'
  1263. # at t/lib/Cases.pm line 173.
  1264. # ''
  1265. # doesn't match '(?-xism:STDERR\:First\ line\
  1266. # Second\ line\
  1267. # )'
  1268.  
  1269. # Failed test 'tee_merged|perl|both|multiline - tee STDOUT (STDOUT)'
  1270. # at t/lib/Cases.pm line 174.
  1271. # ''
  1272. # doesn't match '(?-xism:STDOUT\:First\ line\
  1273. # Second\ line\
  1274. # )'
  1275.  
  1276. # Failed test 'tee_merged|perl|both|multiline - tee STDOUT (STDERR)'
  1277. # at t/lib/Cases.pm line 175.
  1278. # ''
  1279. # doesn't match '(?-xism:STDERR\:First\ line\
  1280. # Second\ line\
  1281. # )'
  1282.  
  1283. # Failed test 'tee_merged|perl|both|unicode - got STDOUT'
  1284. # at t/lib/Cases.pm line 172.
  1285. # ''
  1286. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1287. # )'
  1288.  
  1289. # Failed test 'tee_merged|perl|both|unicode - got STDERR'
  1290. # at t/lib/Cases.pm line 173.
  1291. # ''
  1292. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1293. # )'
  1294.  
  1295. # Failed test 'tee_merged|perl|both|unicode - tee STDOUT (STDOUT)'
  1296. # at t/lib/Cases.pm line 174.
  1297. # ''
  1298. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1299. # )'
  1300.  
  1301. # Failed test 'tee_merged|perl|both|unicode - tee STDOUT (STDERR)'
  1302. # at t/lib/Cases.pm line 175.
  1303. # ''
  1304. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1305. # )'
  1306.  
  1307. # Failed test 'tee_merged|perl|stdout|short - got STDOUT'
  1308. # at t/lib/Cases.pm line 172.
  1309. # ''
  1310. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1311.  
  1312. # Failed test 'tee_merged|perl|stdout|short - tee STDOUT (STDOUT)'
  1313. # at t/lib/Cases.pm line 174.
  1314. # ''
  1315. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1316.  
  1317. # Failed test 'tee_merged|perl|stdout|multiline - got STDOUT'
  1318. # at t/lib/Cases.pm line 172.
  1319. # ''
  1320. # doesn't match '(?-xism:STDOUT\:First\ line\
  1321. # Second\ line\
  1322. # )'
  1323.  
  1324. # Failed test 'tee_merged|perl|stdout|multiline - tee STDOUT (STDOUT)'
  1325. # at t/lib/Cases.pm line 174.
  1326. # ''
  1327. # doesn't match '(?-xism:STDOUT\:First\ line\
  1328. # Second\ line\
  1329. # )'
  1330.  
  1331. # Failed test 'tee_merged|perl|stdout|unicode - got STDOUT'
  1332. # at t/lib/Cases.pm line 172.
  1333. # ''
  1334. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1335. # )'
  1336.  
  1337. # Failed test 'tee_merged|perl|stdout|unicode - tee STDOUT (STDOUT)'
  1338. # at t/lib/Cases.pm line 174.
  1339. # ''
  1340. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1341. # )'
  1342.  
  1343. # Failed test 'tee_merged|sys|stderr|short - got STDERR'
  1344. # at t/lib/Cases.pm line 173.
  1345. # ''
  1346. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1347.  
  1348. # Failed test 'tee_merged|sys|stderr|short - tee STDOUT (STDERR)'
  1349. # at t/lib/Cases.pm line 175.
  1350. # ''
  1351. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1352.  
  1353. # Failed test 'tee_merged|sys|stderr|multiline - got STDERR'
  1354. # at t/lib/Cases.pm line 173.
  1355. # ''
  1356. # doesn't match '(?-xism:STDERR\:First\ line\
  1357. # Second\ line\
  1358. # )'
  1359.  
  1360. # Failed test 'tee_merged|sys|stderr|multiline - tee STDOUT (STDERR)'
  1361. # at t/lib/Cases.pm line 175.
  1362. # ''
  1363. # doesn't match '(?-xism:STDERR\:First\ line\
  1364. # Second\ line\
  1365. # )'
  1366.  
  1367. # Failed test 'tee_merged|sys|stderr|unicode - got STDERR'
  1368. # at t/lib/Cases.pm line 173.
  1369. # ''
  1370. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1371. # )'
  1372.  
  1373. # Failed test 'tee_merged|sys|stderr|unicode - tee STDOUT (STDERR)'
  1374. # at t/lib/Cases.pm line 175.
  1375. # ''
  1376. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1377. # )'
  1378.  
  1379. # Failed test 'tee_merged|sys|both|short - got STDOUT'
  1380. # at t/lib/Cases.pm line 172.
  1381. # ''
  1382. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1383.  
  1384. # Failed test 'tee_merged|sys|both|short - got STDERR'
  1385. # at t/lib/Cases.pm line 173.
  1386. # ''
  1387. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1388.  
  1389. # Failed test 'tee_merged|sys|both|short - tee STDOUT (STDOUT)'
  1390. # at t/lib/Cases.pm line 174.
  1391. # ''
  1392. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1393.  
  1394. # Failed test 'tee_merged|sys|both|short - tee STDOUT (STDERR)'
  1395. # at t/lib/Cases.pm line 175.
  1396. # ''
  1397. # doesn't match '(?-xism:STDERR\:Hello\ World)'
  1398.  
  1399. # Failed test 'tee_merged|sys|both|multiline - got STDOUT'
  1400. # at t/lib/Cases.pm line 172.
  1401. # ''
  1402. # doesn't match '(?-xism:STDOUT\:First\ line\
  1403. # Second\ line\
  1404. # )'
  1405.  
  1406. # Failed test 'tee_merged|sys|both|multiline - got STDERR'
  1407. # at t/lib/Cases.pm line 173.
  1408. # ''
  1409. # doesn't match '(?-xism:STDERR\:First\ line\
  1410. # Second\ line\
  1411. # )'
  1412.  
  1413. # Failed test 'tee_merged|sys|both|multiline - tee STDOUT (STDOUT)'
  1414. # at t/lib/Cases.pm line 174.
  1415. # ''
  1416. # doesn't match '(?-xism:STDOUT\:First\ line\
  1417. # Second\ line\
  1418. # )'
  1419.  
  1420. # Failed test 'tee_merged|sys|both|multiline - tee STDOUT (STDERR)'
  1421. # at t/lib/Cases.pm line 175.
  1422. # ''
  1423. # doesn't match '(?-xism:STDERR\:First\ line\
  1424. # Second\ line\
  1425. # )'
  1426.  
  1427. # Failed test 'tee_merged|sys|both|unicode - got STDOUT'
  1428. # at t/lib/Cases.pm line 172.
  1429. # ''
  1430. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1431. # )'
  1432.  
  1433. # Failed test 'tee_merged|sys|both|unicode - got STDERR'
  1434. # at t/lib/Cases.pm line 173.
  1435. # ''
  1436. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1437. # )'
  1438.  
  1439. # Failed test 'tee_merged|sys|both|unicode - tee STDOUT (STDOUT)'
  1440. # at t/lib/Cases.pm line 174.
  1441. # ''
  1442. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1443. # )'
  1444.  
  1445. # Failed test 'tee_merged|sys|both|unicode - tee STDOUT (STDERR)'
  1446. # at t/lib/Cases.pm line 175.
  1447. # ''
  1448. # doesn't match '(?-xism:STDERR\:Hi\!\ ☺\
  1449. # )'
  1450.  
  1451. # Failed test 'tee_merged|sys|stdout|short - got STDOUT'
  1452. # at t/lib/Cases.pm line 172.
  1453. # ''
  1454. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1455.  
  1456. # Failed test 'tee_merged|sys|stdout|short - tee STDOUT (STDOUT)'
  1457. # at t/lib/Cases.pm line 174.
  1458. # ''
  1459. # doesn't match '(?-xism:STDOUT\:Hello\ World)'
  1460.  
  1461. # Failed test 'tee_merged|sys|stdout|multiline - got STDOUT'
  1462. # at t/lib/Cases.pm line 172.
  1463. # ''
  1464. # doesn't match '(?-xism:STDOUT\:First\ line\
  1465. # Second\ line\
  1466. # )'
  1467.  
  1468. # Failed test 'tee_merged|sys|stdout|multiline - tee STDOUT (STDOUT)'
  1469. # at t/lib/Cases.pm line 174.
  1470. # ''
  1471. # doesn't match '(?-xism:STDOUT\:First\ line\
  1472. # Second\ line\
  1473. # )'
  1474.  
  1475. # Failed test 'tee_merged|sys|stdout|unicode - got STDOUT'
  1476. # at t/lib/Cases.pm line 172.
  1477. # ''
  1478. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1479. # )'
  1480.  
  1481. # Failed test 'tee_merged|sys|stdout|unicode - tee STDOUT (STDOUT)'
  1482. # at t/lib/Cases.pm line 174.
  1483. # ''
  1484. # doesn't match '(?-xism:STDOUT\:Hi\!\ ☺\
  1485. # )'
  1486.  
  1487. # Failed test 'no file descriptors leaked'
  1488. # at t/08-stdin-closed.t line 41.
  1489. # got: '4'
  1490. # expected: '0'
  1491. # Looks like you failed 133 tests of 308.
  1492. t/08-stdin-closed.t ........ Dubious, test returned 133 (wstat 34048, 0x8500)
  1493. Failed 133/308 subtests
  1494. t/09-preserve-exit-code.t .. ok
  1495. t/10-stdout-string.t ....... ok
  1496. t/11-stderr-string.t ....... ok
  1497. t/12-stdin-string.t ........ ok
  1498. t/13-stdout-tied.t ......... ok
  1499. t/14-stderr-tied.t ......... ok
  1500. t/15-stdin-tied.t .......... ok
  1501. t/16-catch-errors.t ........ ok
  1502.  
  1503. Test Summary Report
  1504. -------------------
  1505. t/08-stdin-closed.t (Wstat: 34048 Tests: 308 Failed: 133)
  1506. Failed tests: 94-95, 98-99, 102-117, 120-121, 124-125
  1507. 130-131, 134-135, 138-153, 156-157, 160-161
  1508. 166, 169, 172-183, 185-186, 188-189, 193
  1509. 196, 199-210, 212-213, 215-216, 219, 221
  1510. 224, 226, 229, 231, 233-236, 238-241, 243-246
  1511. 248, 250, 253, 255, 258, 260, 264, 266
  1512. 269, 271, 274, 276, 278-281, 283-286, 288-291
  1513. 293, 295, 298, 300, 303, 305, 308
  1514. Non-zero exit status: 133
  1515. t/13-stdout-tied.t (Wstat: 0 Tests: 309 Failed: 0)
  1516. TODO passed: 6-7, 13, 19, 24-25, 31, 37, 40, 49, 60
  1517. 73, 78, 91, 100-103, 114-115, 126-127, 136-139
  1518. 150-151, 162-163, 170-172, 181, 190, 197-199
  1519. 208, 217, 228, 230, 232, 247, 259, 261-262
  1520. 273, 275, 277, 292, 304, 306-307
  1521. t/14-stderr-tied.t (Wstat: 0 Tests: 309 Failed: 0)
  1522. TODO passed: 6, 12, 18-19, 24, 30, 36-37, 40, 43, 46
  1523. 49, 52, 55, 60-61, 66-67, 72-73, 78-79
  1524. 84-85, 90-91, 100-101, 112-113, 124-127
  1525. 136-137, 148-149, 160-163, 170-171, 179-180
  1526. 188-190, 197-198, 206-207, 215-217, 228-232
  1527. 243-247, 258-262, 273-277, 288-292, 303-307
  1528. Files=15, Tests=3104, 25 wallclock secs ( 1.03 usr 0.11 sys + 9.59 cusr 10.61 csys = 21.34 CPU)
  1529. Result: FAIL
  1530. Failed 1/15 test programs. 133/3104 subtests failed.
  1531. make: *** [test_dynamic] Error 255
  1532. DAGOLDEN/Capture-Tiny-0.10.tar.gz
  1533. /usr/bin/make test -- NOT OK
  1534. //hint// to see the cpan-testers results for installing this module, try:
  1535. reports DAGOLDEN/Capture-Tiny-0.10.tar.gz
  1536. Running make install
  1537. make test had returned bad status, won't install without force
  1538. Running install for module 'Template::Tiny'
  1539. Running make for A/AD/ADAMK/Template-Tiny-0.11.tar.gz
  1540. Checksum for /root/.cpan/sources/authors/id/A/AD/ADAMK/Template-Tiny-0.11.tar.gz ok
  1541.  
  1542. CPAN.pm: Going to build A/AD/ADAMK/Template-Tiny-0.11.tar.gz
  1543.  
  1544. Checking if your kit is complete...
  1545. Looks good
  1546. Warning: prerequisite Capture::Tiny 0.07 not found.
  1547. Writing Makefile for Template::Tiny
  1548. ---- Unsatisfied dependencies detected during ----
  1549. ---- ADAMK/Template-Tiny-0.11.tar.gz ----
  1550. Capture::Tiny [requires]
  1551. Running make test
  1552. Delayed until after prerequisites
  1553. Running make install
  1554. Delayed until after prerequisites
  1555. Running install for module 'Capture::Tiny'
  1556. Running make install
  1557. make test had returned bad status, won't install without force
  1558. Running make for A/AD/ADAMK/Template-Tiny-0.11.tar.gz
  1559. Has already been unwrapped into directory /root/.cpan/build/Template-Tiny-0.11-aypbVA
  1560.  
  1561. CPAN.pm: Going to build A/AD/ADAMK/Template-Tiny-0.11.tar.gz
  1562.  
  1563. 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.
  1564. CPAN: Time::HiRes loaded ok (v1.9719)
  1565. cp lib/Template/Tiny.pm blib/lib/Template/Tiny.pm
  1566. Manifying blib/man3/Template::Tiny.3
  1567. ADAMK/Template-Tiny-0.11.tar.gz
  1568. /usr/bin/make -- OK
  1569. Running make test
  1570. PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
  1571. t/01_compile.t ... ok
  1572. 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.
  1573. BEGIN failed--compilation aborted at t/02_trivial.t line 10.
  1574. # Looks like your test exited with 2 before it could output anything.
  1575. t/02_trivial.t ... Dubious, test returned 2 (wstat 512, 0x200)
  1576. Failed 2/2 subtests
  1577. t/03_samples.t ... ok
  1578. t/04_compat.t .... skipped: Template Toolkit is not installed
  1579. t/05_preparse.t .. ok
  1580.  
  1581. Test Summary Report
  1582. -------------------
  1583. t/02_trivial.t (Wstat: 512 Tests: 0 Failed: 0)
  1584. Non-zero exit status: 2
  1585. Parse errors: Bad plan. You planned 2 tests but ran 0.
  1586. Files=5, Tests=58, 0 wallclock secs ( 0.06 usr 0.03 sys + 0.19 cusr 0.03 csys = 0.31 CPU)
  1587. Result: FAIL
  1588. Failed 1/5 test programs. 0/58 subtests failed.
  1589. make: *** [test_dynamic] Error 255
  1590. ADAMK/Template-Tiny-0.11.tar.gz
  1591. one dependency not OK (Capture::Tiny); additionally test harness failed
  1592. /usr/bin/make test -- NOT OK
  1593. //hint// to see the cpan-testers results for installing this module, try:
  1594. reports ADAMK/Template-Tiny-0.11.tar.gz
  1595. Running make install
  1596. make test had returned bad status, won't install without force
  1597. Running make for P/PL/PLAVEN/Padre-0.84.tar.gz
  1598. Has already been unwrapped into directory /root/.cpan/build/Padre-0.84-KjA62O
  1599.  
  1600. CPAN.pm: Going to build P/PL/PLAVEN/Padre-0.84.tar.gz
  1601.  
  1602. 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.
  1603. 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.
  1604. blib/lib/auto/share/dist/Padre/locale -> blib/lib/auto/share/dist/Padre/locale
  1605. blib/lib/auto/share/dist/Padre/locale/ko.po -> blib/lib/auto/share/dist/Padre/locale/ko.mo
  1606. blib/lib/auto/share/dist/Padre/locale/no.po -> blib/lib/auto/share/dist/Padre/locale/no.mo
  1607. blib/lib/auto/share/dist/Padre/locale/cz.po -> blib/lib/auto/share/dist/Padre/locale/cz.mo
  1608. blib/lib/auto/share/dist/Padre/locale/hu.po -> blib/lib/auto/share/dist/Padre/locale/hu.mo
  1609. blib/lib/auto/share/dist/Padre/locale/he.po -> blib/lib/auto/share/dist/Padre/locale/he.mo
  1610. blib/lib/auto/share/dist/Padre/locale/de.po -> blib/lib/auto/share/dist/Padre/locale/de.mo
  1611. blib/lib/auto/share/dist/Padre/locale/es-es.po -> blib/lib/auto/share/dist/Padre/locale/es-es.mo
  1612. blib/lib/auto/share/dist/Padre/locale/it-it.po -> blib/lib/auto/share/dist/Padre/locale/it-it.mo
  1613. blib/lib/auto/share/dist/Padre/locale/nl-nl.po -> blib/lib/auto/share/dist/Padre/locale/nl-nl.mo
  1614. blib/lib/auto/share/dist/Padre/locale/pl.po -> blib/lib/auto/share/dist/Padre/locale/pl.mo
  1615. blib/lib/auto/share/dist/Padre/locale/fa.po -> blib/lib/auto/share/dist/Padre/locale/fa.mo
  1616. blib/lib/auto/share/dist/Padre/locale/ar.po -> blib/lib/auto/share/dist/Padre/locale/ar.mo
  1617. blib/lib/auto/share/dist/Padre/locale/zh-tw.po -> blib/lib/auto/share/dist/Padre/locale/zh-tw.mo
  1618. blib/lib/auto/share/dist/Padre/locale/fr-fr.po -> blib/lib/auto/share/dist/Padre/locale/fr-fr.mo
  1619. blib/lib/auto/share/dist/Padre/locale/ru.po -> blib/lib/auto/share/dist/Padre/locale/ru.mo
  1620. blib/lib/auto/share/dist/Padre/locale/zh-cn.po -> blib/lib/auto/share/dist/Padre/locale/zh-cn.mo
  1621. blib/lib/auto/share/dist/Padre/locale/tr.po -> blib/lib/auto/share/dist/Padre/locale/tr.mo
  1622. blib/lib/auto/share/dist/Padre/locale/ja.po -> blib/lib/auto/share/dist/Padre/locale/ja.mo
  1623. blib/lib/auto/share/dist/Padre/locale/pt-br.po -> blib/lib/auto/share/dist/Padre/locale/pt-br.mo
  1624. -blib/lib/auto/share/dist/Padre/locale/messages.pot
  1625. cp lib/Padre/Document/Perl.pm blib/lib/Padre/Document/Perl.pm
  1626. cp lib/Padre/DB/Plugin.pm blib/lib/Padre/DB/Plugin.pm
  1627. cp lib/Padre/MimeTypes.pm blib/lib/Padre/MimeTypes.pm
  1628. cp lib/Padre/Wx/Menu/Debug.pm blib/lib/Padre/Wx/Menu/Debug.pm
  1629. cp lib/Padre/Autosave.pm blib/lib/Padre/Autosave.pm
  1630. cp lib/Padre/Wx/Progress.pm blib/lib/Padre/Wx/Progress.pm
  1631. cp lib/Padre/Wx/Dialog/OpenURL.pm blib/lib/Padre/Wx/Dialog/OpenURL.pm
  1632. cp lib/Padre/Wx/Dialog/SpecialValues.pm blib/lib/Padre/Wx/Dialog/SpecialValues.pm
  1633. cp lib/Padre/Plugin/My.pm blib/lib/Padre/Plugin/My.pm
  1634. cp lib/Padre/Wx/Main.pm blib/lib/Padre/Wx/Main.pm
  1635. cp lib/Padre/Config/Setting.pm blib/lib/Padre/Config/Setting.pm
  1636. cp lib/Padre/PPI/Transform.pm blib/lib/Padre/PPI/Transform.pm
  1637. cp lib/Padre/Current.pm blib/lib/Padre/Current.pm
  1638. cp lib/Padre/Wx/Dialog/Text.pm blib/lib/Padre/Wx/Dialog/Text.pm
  1639. cp lib/Padre/Task/LaunchDefaultBrowser.pm blib/lib/Padre/Task/LaunchDefaultBrowser.pm
  1640. cp lib/Padre/Wx/Menu/Edit.pm blib/lib/Padre/Wx/Menu/Edit.pm
  1641. cp lib/Padre/Wx/Syntax.pm blib/lib/Padre/Wx/Syntax.pm
  1642. cp lib/Padre/Wx/Wizard.pm blib/lib/Padre/Wx/Wizard.pm
  1643. cp lib/Padre/Project.pm blib/lib/Padre/Project.pm
  1644. cp lib/Padre/Wx/Debug.pm blib/lib/Padre/Wx/Debug.pm
  1645. cp lib/Padre/Task/Outline.pm blib/lib/Padre/Task/Outline.pm
  1646. cp lib/Padre/Plugin/PopularityContest/Ping.pm blib/lib/Padre/Plugin/PopularityContest/Ping.pm
  1647. cp lib/Padre/Wx/Dialog/Wizard/Padre/Plugin.pm blib/lib/Padre/Wx/Dialog/Wizard/Padre/Plugin.pm
  1648. cp lib/Padre/Wx/Style.pm blib/lib/Padre/Wx/Style.pm
  1649. cp lib/Padre/Task/Addition.pm blib/lib/Padre/Task/Addition.pm
  1650. cp lib/Padre/Wx/Directory/Search.pm blib/lib/Padre/Wx/Directory/Search.pm
  1651. cp lib/Padre/Role/Task.pm blib/lib/Padre/Role/Task.pm
  1652. cp lib/Padre/Wx/WizardLibrary.pm blib/lib/Padre/Wx/WizardLibrary.pm
  1653. cp lib/Padre/Wx/Dialog/Bookmarks.pm blib/lib/Padre/Wx/Dialog/Bookmarks.pm
  1654. cp lib/Padre/Wx/Directory/Path.pm blib/lib/Padre/Wx/Directory/Path.pm
  1655. cp lib/Padre/Document/Perl/QuickFix/StrictWarnings.pm blib/lib/Padre/Document/Perl/QuickFix/StrictWarnings.pm
  1656. cp lib/Padre/Wx/Dialog/Preferences.pm blib/lib/Padre/Wx/Dialog/Preferences.pm
  1657. cp lib/Padre/Util.pm blib/lib/Padre/Util.pm
  1658. cp lib/Padre/Constant.pm blib/lib/Padre/Constant.pm
  1659. cp lib/Padre/Perl.pm blib/lib/Padre/Perl.pm
  1660. cp lib/Padre/Wx/Dialog/Preferences/Editor.pm blib/lib/Padre/Wx/Dialog/Preferences/Editor.pm
  1661. cp lib/Padre/Wx/Directory/Browse.pm blib/lib/Padre/Wx/Directory/Browse.pm
  1662. cp lib/Padre/Task/PPI.pm blib/lib/Padre/Task/PPI.pm
  1663. cp lib/Padre/Portable.pm blib/lib/Padre/Portable.pm
  1664. cp lib/Padre/Document/POD.pm blib/lib/Padre/Document/POD.pm
  1665. cp lib/Padre/Wx/Role/Conduit.pm blib/lib/Padre/Wx/Role/Conduit.pm
  1666. cp lib/Padre/Wx/Directory/TreeCtrl.pm blib/lib/Padre/Wx/Directory/TreeCtrl.pm
  1667. cp lib/Padre/Wx/CPAN/Listview.pm blib/lib/Padre/Wx/CPAN/Listview.pm
  1668. cp lib/Padre/Search.pm blib/lib/Padre/Search.pm
  1669. cp lib/Padre/Wx/Menu.pm blib/lib/Padre/Wx/Menu.pm
  1670. cp lib/Padre/Wx/Dialog/DocStats.pm blib/lib/Padre/Wx/Dialog/DocStats.pm
  1671. cp lib/Padre/Document.pm blib/lib/Padre/Document.pm
  1672. cp lib/Padre/Wx/Dialog/Preferences/File.pm blib/lib/Padre/Wx/Dialog/Preferences/File.pm
  1673. cp lib/Padre/Util/CommandLine.pm blib/lib/Padre/Util/CommandLine.pm
  1674. cp lib/Padre/Wx/Right.pm blib/lib/Padre/Wx/Right.pm
  1675. cp lib/Padre/Wx/ToolBar.pm blib/lib/Padre/Wx/ToolBar.pm
  1676. cp lib/Padre/Util/Template.pm blib/lib/Padre/Util/Template.pm
  1677. cp lib/Padre/Pod2HTML.pm blib/lib/Padre/Pod2HTML.pm
  1678. cp lib/Padre/Document/Perl/Lexer.pm blib/lib/Padre/Document/Perl/Lexer.pm
  1679. cp lib/Padre/Browser/PseudoPerldoc.pm blib/lib/Padre/Browser/PseudoPerldoc.pm
  1680. cp lib/Padre/Wx/Dialog/HTML.pm blib/lib/Padre/Wx/Dialog/HTML.pm
  1681. cp lib/Padre/Config/Project.pm blib/lib/Padre/Config/Project.pm
  1682. cp lib/Padre/Wx/Dialog/PluginManager.pm blib/lib/Padre/Wx/Dialog/PluginManager.pm
  1683. cp lib/Padre/TaskManager.pm blib/lib/Padre/TaskManager.pm
  1684. cp lib/Padre/Task/LWP.pm blib/lib/Padre/Task/LWP.pm
  1685. cp lib/Padre/Config/Patch.pm blib/lib/Padre/Config/Patch.pm
  1686. cp lib/Padre/Wx/Browser.pm blib/lib/Padre/Wx/Browser.pm
  1687. cp lib/Padre/Wx/FBP/FindInFiles.pm blib/lib/Padre/Wx/FBP/FindInFiles.pm
  1688. cp lib/Padre/TaskQueue.pm blib/lib/Padre/TaskQueue.pm
  1689. cp lib/Padre/Wx/Printout.pm blib/lib/Padre/Wx/Printout.pm
  1690. cp lib/Padre/Wx/Menu/Search.pm blib/lib/Padre/Wx/Menu/Search.pm
  1691. cp lib/Padre/Task/IntroduceTemporaryVariable.pm blib/lib/Padre/Task/IntroduceTemporaryVariable.pm
  1692. cp lib/Padre/DB/Migrate/Patch.pm blib/lib/Padre/DB/Migrate/Patch.pm
  1693. cp lib/Padre/Cache.pm blib/lib/Padre/Cache.pm
  1694. cp lib/Padre/Wx/Dialog/Replace.pm blib/lib/Padre/Wx/Dialog/Replace.pm
  1695. cp lib/Padre/Wx/Dialog/Wizard/Perl/Module.pm blib/lib/Padre/Wx/Dialog/Wizard/Perl/Module.pm
  1696. cp lib/Padre/DB/LastPositionInFile.pm blib/lib/Padre/DB/LastPositionInFile.pm
  1697. cp lib/Padre/Sync.pm blib/lib/Padre/Sync.pm
  1698. cp lib/Padre/Transform.pm blib/lib/Padre/Transform.pm
  1699. cp lib/Padre/Wx/Dialog/QuickMenuAccess.pm blib/lib/Padre/Wx/Dialog/QuickMenuAccess.pm
  1700. cp lib/Padre/Task/Eval.pm blib/lib/Padre/Task/Eval.pm
  1701. cp lib/Padre/DB/SessionFile.pm blib/lib/Padre/DB/SessionFile.pm
  1702. cp lib/Padre/Wx/Dialog/Shortcut.pm blib/lib/Padre/Wx/Dialog/Shortcut.pm
  1703. cp lib/Padre/Wx/Output.pm blib/lib/Padre/Wx/Output.pm
  1704. cp lib/Padre/Wx/Role/Dialog.pm blib/lib/Padre/Wx/Role/Dialog.pm
  1705. cp lib/Padre/Wx/Menu/Help.pm blib/lib/Padre/Wx/Menu/Help.pm
  1706. cp lib/Padre/Locale.pm blib/lib/Padre/Locale.pm
  1707. cp lib/Padre/Wx/Menu/Window.pm blib/lib/Padre/Wx/Menu/Window.pm
  1708. cp lib/Padre.pm blib/lib/Padre.pm
  1709. cp lib/Padre/Wx/FindResult.pm blib/lib/Padre/Wx/FindResult.pm
  1710. cp lib/Padre/Wx/Popup.pm blib/lib/Padre/Wx/Popup.pm
  1711. cp lib/Padre/Wx/Dialog/KeyBindings.pm blib/lib/Padre/Wx/Dialog/KeyBindings.pm
  1712. cp lib/Padre/Wx/Role/Form.pm blib/lib/Padre/Wx/Role/Form.pm
  1713. cp lib/Padre/Wx/HtmlWindow.pm blib/lib/Padre/Wx/HtmlWindow.pm
  1714. cp lib/Padre/Wx/Menu/Run.pm blib/lib/Padre/Wx/Menu/Run.pm
  1715. cp lib/Padre/Wx/Dialog/SessionSave.pm blib/lib/Padre/Wx/Dialog/SessionSave.pm
  1716. cp lib/Padre/Wx/Role/Main.pm blib/lib/Padre/Wx/Role/Main.pm
  1717. cp lib/Padre/Task/OpenResource.pm blib/lib/Padre/Task/OpenResource.pm
  1718. cp lib/Padre/Wx/Dialog/Goto.pm blib/lib/Padre/Wx/Dialog/Goto.pm
  1719. cp lib/Padre/File/HTTP.pm blib/lib/Padre/File/HTTP.pm
  1720. cp lib/Padre/Wx/CPAN.pm blib/lib/Padre/Wx/CPAN.pm
  1721. cp lib/Padre/Browser/Document.pm blib/lib/Padre/Browser/Document.pm
  1722. cp lib/Padre/Wx/Dialog/RegexEditor.pm blib/lib/Padre/Wx/Dialog/RegexEditor.pm
  1723. cp lib/Padre/Wx/Dialog/PerlFilter.pm blib/lib/Padre/Wx/Dialog/PerlFilter.pm
  1724. cp lib/Padre/Wx/Dialog/Preferences/PerlAutoComplete.pm blib/lib/Padre/Wx/Dialog/Preferences/PerlAutoComplete.pm
  1725. cp lib/Padre/Wx/Dialog/OpenResource.pm blib/lib/Padre/Wx/Dialog/OpenResource.pm
  1726. cp lib/Padre/Config/Upgrade.pm blib/lib/Padre/Config/Upgrade.pm
  1727. cp lib/Padre/Wx/AuiManager.pm blib/lib/Padre/Wx/AuiManager.pm
  1728. cp lib/Padre/Project/Perl.pm blib/lib/Padre/Project/Perl.pm
  1729. cp lib/Padre/Document/Perl/QuickFix/IncludeModule.pm blib/lib/Padre/Document/Perl/QuickFix/IncludeModule.pm
  1730. cp lib/Padre/QuickFix.pm blib/lib/Padre/QuickFix.pm
  1731. cp lib/Padre/Desktop.pm blib/lib/Padre/Desktop.pm
  1732. cp lib/Padre/Document/Perl/QuickFix.pm blib/lib/Padre/Document/Perl/QuickFix.pm
  1733. cp lib/Padre/Wx/FBP/WhereFrom.pm blib/lib/Padre/Wx/FBP/WhereFrom.pm
  1734. cp lib/Padre/DB/HostConfig.pm blib/lib/Padre/DB/HostConfig.pm
  1735. cp lib/Padre/ProjectManager.pm blib/lib/Padre/ProjectManager.pm
  1736. cp lib/Padre/Wx/FBP/Find.pm blib/lib/Padre/Wx/FBP/Find.pm
  1737. cp lib/Padre/Wx/FunctionList.pm blib/lib/Padre/Wx/FunctionList.pm
  1738. cp lib/Padre/Task/LexicalReplaceVariable.pm blib/lib/Padre/Task/LexicalReplaceVariable.pm
  1739. cp lib/Padre/Wx/FBP/Sync.pm blib/lib/Padre/Wx/FBP/Sync.pm
  1740. cp lib/Padre/Startup.pm blib/lib/Padre/Startup.pm
  1741. cp lib/Padre/PluginBuilder.pm blib/lib/Padre/PluginBuilder.pm
  1742. cp lib/Padre/Wx/Menubar.pm blib/lib/Padre/Wx/Menubar.pm
  1743. cp lib/Padre/TaskWorker.pm blib/lib/Padre/TaskWorker.pm
  1744. cp lib/Padre/Wx/Directory.pm blib/lib/Padre/Wx/Directory.pm
  1745. cp lib/Padre/Task/Syntax.pm blib/lib/Padre/Task/Syntax.pm
  1746. cp lib/Padre/Wx/Role/View.pm blib/lib/Padre/Wx/Role/View.pm
  1747. cp lib/Padre/DB/RecentlyUsed.pm blib/lib/Padre/DB/RecentlyUsed.pm
  1748. cp lib/Padre/DB/Migrate.pm blib/lib/Padre/DB/Migrate.pm
  1749. cp lib/Padre/CPAN.pm blib/lib/Padre/CPAN.pm
  1750. cp lib/Padre/Wx/Dialog/Positions.pm blib/lib/Padre/Wx/Dialog/Positions.pm
  1751. cp lib/Padre/Project/Perl/Temp.pm blib/lib/Padre/Project/Perl/Temp.pm
  1752. cp lib/Padre/Util/SVN.pm blib/lib/Padre/Util/SVN.pm
  1753. cp lib/Padre/Task/FindVariableDeclaration.pm blib/lib/Padre/Task/FindVariableDeclaration.pm
  1754. cp lib/Padre/Wx/Dialog/Advanced.pm blib/lib/Padre/Wx/Dialog/Advanced.pm
  1755. cp lib/Padre/Command.pm blib/lib/Padre/Command.pm
  1756. cp lib/Padre/Wx/Command.pm blib/lib/Padre/Wx/Command.pm
  1757. cp lib/Padre/Wx/Role/Dwell.pm blib/lib/Padre/Wx/Role/Dwell.pm
  1758. cp lib/Padre/Wx/Dialog/FindInFiles.pm blib/lib/Padre/Wx/Dialog/FindInFiles.pm
  1759. cp lib/Padre/Project/Perl/MI.pm blib/lib/Padre/Project/Perl/MI.pm
  1760. cp lib/Padre/DB/History.pm blib/lib/Padre/DB/History.pm
  1761. cp lib/Padre/Document/Perl/PPILexer.pm blib/lib/Padre/Document/Perl/PPILexer.pm
  1762. cp lib/Padre/PPI.pm blib/lib/Padre/PPI.pm
  1763. cp lib/Padre/DB/Bookmark.pm blib/lib/Padre/DB/Bookmark.pm
  1764. cp lib/Padre/Browser/POD.pm blib/lib/Padre/Browser/POD.pm
  1765. cp lib/Padre/Browser.pm blib/lib/Padre/Browser.pm
  1766. cp lib/Padre/Wx/Dialog/WizardPage.pm blib/lib/Padre/Wx/Dialog/WizardPage.pm
  1767. cp lib/Padre/Util/FileBrowser.pm blib/lib/Padre/Util/FileBrowser.pm
  1768. cp lib/Padre/Wx/App.pm blib/lib/Padre/Wx/App.pm
  1769. cp lib/Padre/Wx/Outline.pm blib/lib/Padre/Wx/Outline.pm
  1770. cp lib/Padre/Wx/Menu/Tools.pm blib/lib/Padre/Wx/Menu/Tools.pm
  1771. cp lib/Padre/Wx/Dialog/SessionManager.pm blib/lib/Padre/Wx/Dialog/SessionManager.pm
  1772. cp lib/Padre/Project/Perl/MB.pm blib/lib/Padre/Project/Perl/MB.pm
  1773. cp lib/Padre/Wx/Nth.pm blib/lib/Padre/Wx/Nth.pm
  1774. cp lib/Padre/Wx/Dialog/ModuleStart.pm blib/lib/Padre/Wx/Dialog/ModuleStart.pm
  1775. cp lib/Padre/Config/Human.pm blib/lib/Padre/Config/Human.pm
  1776. cp lib/Padre/Wx/Display.pm blib/lib/Padre/Wx/Display.pm
  1777. cp lib/Padre/Wx/StatusBar.pm blib/lib/Padre/Wx/StatusBar.pm
  1778. cp lib/Padre/Wx/Dialog/WindowList.pm blib/lib/Padre/Wx/Dialog/WindowList.pm
  1779. cp lib/Padre/TaskHandle.pm blib/lib/Padre/TaskHandle.pm
  1780. cp lib/Padre/Wx/Menu/File.pm blib/lib/Padre/Wx/Menu/File.pm
  1781. cp lib/Padre/Task/File.pm blib/lib/Padre/Task/File.pm
  1782. cp lib/Padre/Project/Perl/EUMM.pm blib/lib/Padre/Project/Perl/EUMM.pm
  1783. cp lib/Padre/Wx/PodFrame.pm blib/lib/Padre/Wx/PodFrame.pm
  1784. cp lib/Padre/Wx/Left.pm blib/lib/Padre/Wx/Left.pm
  1785. cp lib/Padre/File/FTP.pm blib/lib/Padre/File/FTP.pm
  1786. cp lib/Padre/Config/Host.pm blib/lib/Padre/Config/Host.pm
  1787. cp lib/Padre/Document/Perl/Help.pm blib/lib/Padre/Document/Perl/Help.pm
  1788. cp lib/Padre/Document/Config.pm blib/lib/Padre/Document/Config.pm
  1789. cp lib/Padre/TaskProcess.pm blib/lib/Padre/TaskProcess.pm
  1790. cp lib/Padre/Wx/Dialog/WhereFrom.pm blib/lib/Padre/Wx/Dialog/WhereFrom.pm
  1791. cp lib/Padre/Wx/TreeCtrl/ScrollLock.pm blib/lib/Padre/Wx/TreeCtrl/ScrollLock.pm
  1792. cp lib/Padre/Plugin.pm blib/lib/Padre/Plugin.pm
  1793. cp lib/Padre/Wx/TodoList.pm blib/lib/Padre/Wx/TodoList.pm
  1794. cp lib/Padre/Plugin/PopularityContest.pm blib/lib/Padre/Plugin/PopularityContest.pm
  1795. cp lib/Padre/Project/Temp.pm blib/lib/Padre/Project/Temp.pm
  1796. cp lib/Padre/Wx/Menu/View.pm blib/lib/Padre/Wx/Menu/View.pm
  1797. cp lib/Padre/Wx/Menu/RightClick.pm blib/lib/Padre/Wx/Menu/RightClick.pm
  1798. cp lib/Padre/Wx/Dialog/Sync2.pm blib/lib/Padre/Wx/Dialog/Sync2.pm
  1799. cp lib/Padre/PPI/EndifyPod.pm blib/lib/Padre/PPI/EndifyPod.pm
  1800. cp lib/Padre/Manual/Hacking.pod blib/lib/Padre/Manual/Hacking.pod
  1801. cp lib/Padre/Wx/Notebook.pm blib/lib/Padre/Wx/Notebook.pm
  1802. cp lib/Padre/Logger.pm blib/lib/Padre/Logger.pm
  1803. cp lib/Padre/Project/Null.pm blib/lib/Padre/Project/Null.pm
  1804. cp lib/Padre/Wx/Bottom.pm blib/lib/Padre/Wx/Bottom.pm
  1805. cp lib/Padre/Lock.pm blib/lib/Padre/Lock.pm
  1806. cp lib/Padre/Wx/Action.pm blib/lib/Padre/Wx/Action.pm
  1807. cp lib/Padre/Task.pm blib/lib/Padre/Task.pm
  1808. cp lib/Padre/Wx/FindInFiles.pm blib/lib/Padre/Wx/FindInFiles.pm
  1809. cp lib/Padre/Manual.pod blib/lib/Padre/Manual.pod
  1810. cp lib/Padre/Document/Perl/Outline.pm blib/lib/Padre/Document/Perl/Outline.pm
  1811. cp lib/Padre/DB/Snippets.pod blib/lib/Padre/DB/Snippets.pod
  1812. cp lib/Padre/Task/RecentFiles.pm blib/lib/Padre/Task/RecentFiles.pm
  1813. cp lib/Padre/Wx/Dialog/Encode.pm blib/lib/Padre/Wx/Dialog/Encode.pm
  1814. cp lib/Padre/Task/Browser.pm blib/lib/Padre/Task/Browser.pm
  1815. cp lib/Padre/Wx/TreeCtrl.pm blib/lib/Padre/Wx/TreeCtrl.pm
  1816. cp lib/Padre/Wx.pm blib/lib/Padre/Wx.pm
  1817. cp lib/Padre/Wx/Menu/Refactor.pm blib/lib/Padre/Wx/Menu/Refactor.pm
  1818. cp lib/Padre/Wx/Dialog/Wizard/Padre/Document.pm blib/lib/Padre/Wx/Dialog/Wizard/Padre/Document.pm
  1819. cp lib/Padre/PPI/UpdateCopyright.pm blib/lib/Padre/PPI/UpdateCopyright.pm
  1820. cp lib/Padre/Wx/About.pm blib/lib/Padre/Wx/About.pm
  1821. cp lib/Padre/Task/FindUnmatchedBrace.pm blib/lib/Padre/Task/FindUnmatchedBrace.pm
  1822. cp lib/Padre/PluginHandle.pm blib/lib/Padre/PluginHandle.pm
  1823. cp lib/Padre/Wx/Editor.pm blib/lib/Padre/Wx/Editor.pm
  1824. cp lib/Padre/DB/Session.pm blib/lib/Padre/DB/Session.pm
  1825. cp lib/Padre/Wx/History/TextEntryDialog.pm blib/lib/Padre/Wx/History/TextEntryDialog.pm
  1826. cp lib/Padre/Wx/Dialog/Search.pm blib/lib/Padre/Wx/Dialog/Search.pm
  1827. cp lib/Padre/Test.pm blib/lib/Padre/Test.pm
  1828. cp lib/Padre/Document/Perl/FunctionList.pm blib/lib/Padre/Document/Perl/FunctionList.pm
  1829. cp lib/Padre/Wx/Dialog/Snippets.pm blib/lib/Padre/Wx/Dialog/Snippets.pm
  1830. cp lib/Padre/Wx/Dialog/Find.pm blib/lib/Padre/Wx/Dialog/Find.pm
  1831. cp lib/Padre/Wx/FileDropTarget.pm blib/lib/Padre/Wx/FileDropTarget.pm
  1832. cp lib/Padre/Wx/Dialog/RefactorSelectFunction.pm blib/lib/Padre/Wx/Dialog/RefactorSelectFunction.pm
  1833. cp lib/Padre/Wx/Menu/Perl.pm blib/lib/Padre/Wx/Menu/Perl.pm
  1834. cp lib/Padre/Wx/Dialog.pm blib/lib/Padre/Wx/Dialog.pm
  1835. cp lib/Padre/Plugin/Devel.pm blib/lib/Padre/Plugin/Devel.pm
  1836. cp lib/Padre/Wx/Dialog/WizardSelector.pm blib/lib/Padre/Wx/Dialog/WizardSelector.pm
  1837. cp lib/Padre/Config/Style.pm blib/lib/Padre/Config/Style.pm
  1838. cp lib/Padre/Locker.pm blib/lib/Padre/Locker.pm
  1839. cp lib/Padre/Wx/History/ComboBox.pm blib/lib/Padre/Wx/History/ComboBox.pm
  1840. cp lib/Padre/Wx/Debugger.pm blib/lib/Padre/Wx/Debugger.pm
  1841. cp lib/Padre/File.pm blib/lib/Padre/File.pm
  1842. cp lib/Padre/Config.pm blib/lib/Padre/Config.pm
  1843. cp lib/Padre/Wx/ActionQueue.pm blib/lib/Padre/Wx/ActionQueue.pm
  1844. cp lib/Padre/Document/Perl/Beginner.pm blib/lib/Padre/Document/Perl/Beginner.pm
  1845. cp lib/Padre/PluginManager.pm blib/lib/Padre/PluginManager.pm
  1846. cp lib/Padre/Wx/Dialog/Wizard/Select.pm blib/lib/Padre/Wx/Dialog/Wizard/Select.pm
  1847. cp lib/Padre/Task/FindInFiles.pm blib/lib/Padre/Task/FindInFiles.pm
  1848. cp lib/Padre/Document/Perl/Syntax.pm blib/lib/Padre/Document/Perl/Syntax.pm
  1849. cp lib/Padre/Help.pm blib/lib/Padre/Help.pm
  1850. cp lib/Padre/Project/Perl/DZ.pm blib/lib/Padre/Project/Perl/DZ.pm
  1851. cp lib/Padre/DB.pm blib/lib/Padre/DB.pm
  1852. cp lib/Padre/Wx/Icon.pm blib/lib/Padre/Wx/Icon.pm
  1853. cp lib/Padre/Wx/ActionLibrary.pm blib/lib/Padre/Wx/ActionLibrary.pm
  1854. cp lib/Padre/Wx/Dialog/Sync.pm blib/lib/Padre/Wx/Dialog/Sync.pm
  1855. cp lib/Padre/Task/Run.pm blib/lib/Padre/Task/Run.pm
  1856. cp lib/Padre/Util/Win32.pm blib/lib/Padre/Util/Win32.pm
  1857. cp lib/Padre/TaskThread.pm blib/lib/Padre/TaskThread.pm
  1858. cp lib/Padre/DB/SyntaxHighlight.pm blib/lib/Padre/DB/SyntaxHighlight.pm
  1859. cp lib/Padre/Wx/Dialog/HelpSearch.pm blib/lib/Padre/Wx/Dialog/HelpSearch.pm
  1860. cp lib/Padre/Wx/Dialog/Form.pm blib/lib/Padre/Wx/Dialog/Form.pm
  1861. cp lib/Padre/Wx/Dialog/Warning.pm blib/lib/Padre/Wx/Dialog/Warning.pm
  1862. cp lib/Padre/File/Local.pm blib/lib/Padre/File/Local.pm
  1863. cp lib/Padre/Wx/Dialog/FilterTool.pm blib/lib/Padre/Wx/Dialog/FilterTool.pm
  1864. cp lib/Padre/Task/FunctionList.pm blib/lib/Padre/Task/FunctionList.pm
  1865. cp script/padre blib/script/padre
  1866. /usr/bin/perl5.12.3 "-Iinc" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/padre
  1867. Manifying blib/man3/Padre::Document::Perl.3
  1868. Manifying blib/man3/Padre::Wx::FindResult.3
  1869. Manifying blib/man3/Padre::DB::Plugin.3
  1870. Manifying blib/man3/Padre::MimeTypes.3
  1871. Manifying blib/man3/Padre::Wx::Dialog::KeyBindings.3
  1872. Manifying blib/man3/Padre::Wx::Progress.3
  1873. Manifying blib/man3/Padre::Autosave.3
  1874. Manifying blib/man3/Padre::Wx::Dialog::OpenURL.3
  1875. Manifying blib/man3/Padre::Wx::HtmlWindow.3
  1876. Manifying blib/man3/Padre::Plugin::My.3
  1877. Manifying blib/man3/Padre::Wx::Main.3
  1878. Manifying blib/man3/Padre::Wx::Dialog::Positions.3
  1879. Manifying blib/man3/Padre::PPI::Transform.3
  1880. Manifying blib/man3/Padre::Current.3
  1881. Manifying blib/man3/Padre::Util::SVN.3
  1882. Manifying blib/man3/Padre::Task::FindVariableDeclaration.3
  1883. Manifying blib/man3/Padre::Wx::Dialog::Advanced.3
  1884. Manifying blib/man3/Padre::Wx::Role::Dwell.3
  1885. Manifying blib/man3/Padre::DB::History.3
  1886. Manifying blib/man3/Padre::Wx::Wizard.3
  1887. Manifying blib/man3/Padre::DB::Bookmark.3
  1888. Manifying blib/man3/Padre::Browser.3
  1889. Manifying blib/man3/Padre::Util::FileBrowser.3
  1890. Manifying blib/man3/Padre::Wx::Dialog::WizardPage.3
  1891. Manifying blib/man3/Padre::Wx::App.3
  1892. Manifying blib/man3/Padre::Wx::Dialog::SessionManager.3
  1893. Manifying blib/man3/Padre::Wx::Display.3
  1894. Manifying blib/man3/Padre::Config::Human.3
  1895. Manifying blib/man3/Padre::Wx::Dialog::Wizard::Padre::Plugin.3
  1896. Manifying blib/man3/Padre::Wx::StatusBar.3
  1897. Manifying blib/man3/Padre::Wx::Dialog::WindowList.3
  1898. Manifying blib/man3/Padre::Task::File.3
  1899. Manifying blib/man3/Padre::Wx::PodFrame.3
  1900. Manifying blib/man3/Padre::Role::Task.3
  1901. Manifying blib/man3/Padre::Config::Host.3
  1902. Manifying blib/man3/Padre::Document::Perl::Help.3
  1903. Manifying blib/man3/Padre::Document::Perl::QuickFix::StrictWarnings.3
  1904. Manifying blib/man3/Padre::Wx::Dialog::Preferences.3
  1905. Manifying blib/man3/Padre::Wx::TreeCtrl::ScrollLock.3
  1906. Manifying blib/man3/Padre::Util.3
  1907. Manifying blib/man3/Padre::Constant.3
  1908. Manifying blib/man3/Padre::Perl.3
  1909. Manifying blib/man3/Padre::Task::PPI.3
  1910. Manifying blib/man3/Padre::Wx::Editor.3
  1911. Manifying blib/man3/Padre::DB::Session.3
  1912. Manifying blib/man3/Padre::Wx::Role::Conduit.3
  1913. Manifying blib/man3/Padre::Locale.3
  1914. Manifying blib/man3/Padre::Wx::Role::Dialog.3
  1915. Manifying blib/man3/Padre.3
  1916. Manifying blib/man3/Padre::Plugin.3
  1917. Manifying blib/man3/Padre::Search.3
  1918. Manifying blib/man3/Padre::Plugin::PopularityContest.3
  1919. Manifying blib/man3/Padre::Project::Temp.3
  1920. Manifying blib/man3/Padre::Wx::Dialog::DocStats.3
  1921. Manifying blib/man3/Padre::Wx::Dialog::Preferences::File.3
  1922. Manifying blib/man3/Padre::Document.3
  1923. Manifying blib/man3/Padre::PPI::EndifyPod.3
  1924. Manifying blib/man3/Padre::Util::Template.3
  1925. Manifying blib/man3/Padre::Manual::Hacking.3
  1926. Manifying blib/man3/Padre::Logger.3
  1927. Manifying blib/man3/Padre::Wx::Action.3
  1928. Manifying blib/man3/Padre::Task.3
  1929. Manifying blib/man3/Padre::Pod2HTML.3
  1930. Manifying blib/man3/Padre::Manual.3
  1931. Manifying blib/man3/Padre::DB::Snippets.3
  1932. Manifying blib/man3/Padre::Wx::Dialog::PluginManager.3
  1933. Manifying blib/man3/Padre::TaskManager.3
  1934. Manifying blib/man3/Padre::Task::LWP.3
  1935. Manifying blib/man3/Padre::Wx::Browser.3
  1936. Manifying blib/man3/Padre::Wx.3
  1937. Manifying blib/man3/Padre::Wx::Dialog::Wizard::Padre::Document.3
  1938. Manifying blib/man3/Padre::Task::IntroduceTemporaryVariable.3
  1939. Manifying blib/man3/Padre::Wx::Dialog::Replace.3
  1940. Manifying blib/man3/Padre::Wx::Dialog::Wizard::Perl::Module.3
  1941. Manifying blib/man3/Padre::PPI::UpdateCopyright.3
  1942. Manifying blib/man3/Padre::DB::LastPositionInFile.3
  1943. Manifying blib/man3/Padre::Task::FindUnmatchedBrace.3
  1944. Manifying blib/man3/Padre::Sync.3
  1945. Manifying blib/man3/Padre::Transform.3
  1946. Manifying blib/man3/Padre::Wx::Dialog::QuickMenuAccess.3
  1947. Manifying blib/man3/Padre::Wx::Dialog::HelpSearch.3
  1948. Manifying blib/man3/Padre::DB::SyntaxHighlight.3
  1949. Manifying blib/man3/Padre::Task::Eval.3
  1950. Manifying blib/man3/Padre::DB::SessionFile.3
  1951. Manifying blib/man3/Padre::Wx::Dialog::Shortcut.3
  1952. Manifying blib/man3/Padre::Wx::Dialog::FilterTool.3
  1953. Manifying blib/man3/Padre::Wx::Dialog::SessionSave.3
  1954. Manifying blib/man3/Padre::Wx::Role::Main.3
  1955. Manifying blib/man3/Padre::Task::OpenResource.3
  1956. Manifying blib/man3/Padre::Wx::Dialog::Goto.3
  1957. Manifying blib/man3/Padre::Wx::Dialog::WizardSelector.3
  1958. Manifying blib/man3/Padre::Plugin::Devel.3
  1959. Manifying blib/man3/Padre::Wx::Dialog.3
  1960. Manifying blib/man3/Padre::Browser::Document.3
  1961. Manifying blib/man3/Padre::Wx::CPAN.3
  1962. Manifying blib/man3/Padre::Wx::History::ComboBox.3
  1963. Manifying blib/man3/Padre::Locker.3
  1964. Manifying blib/man3/Padre::Wx::Dialog::RegexEditor.3
  1965. Manifying blib/man3/Padre::Wx::Dialog::PerlFilter.3
  1966. Manifying blib/man3/Padre::Wx::Dialog::Preferences::PerlAutoComplete.3
  1967. Manifying blib/man3/Padre::Wx::Debugger.3
  1968. Manifying blib/man3/Padre::Wx::Dialog::OpenResource.3
  1969. Manifying blib/man3/Padre::Config::Upgrade.3
  1970. Manifying blib/man3/Padre::File.3
  1971. Manifying blib/man3/Padre::Document::Perl::QuickFix::IncludeModule.3
  1972. Manifying blib/man3/Padre::Config.3
  1973. Manifying blib/man3/Padre::QuickFix.3
  1974. Manifying blib/man3/Padre::Desktop.3
  1975. Manifying blib/man3/Padre::Document::Perl::QuickFix.3
  1976. Manifying blib/man3/Padre::DB::HostConfig.3
  1977. Manifying blib/man3/Padre::Wx::ActionQueue.3
  1978. Manifying blib/man3/Padre::Wx::Dialog::Wizard::Select.3
  1979. Manifying blib/man3/Padre::PluginManager.3
  1980. Manifying blib/man3/Padre::Document::Perl::Beginner.3
  1981. Manifying blib/man3/Padre::Help.3
  1982. Manifying blib/man3/Padre::Task::LexicalReplaceVariable.3
  1983. Manifying blib/man3/Padre::Startup.3
  1984. Manifying blib/man3/Padre::PluginBuilder.3
  1985. Manifying blib/man3/Padre::DB.3
  1986. Manifying blib/man3/Padre::Wx::Dialog::Sync.3
  1987. Manifying blib/man3/Padre::Util::Win32.3
  1988. Manifying blib/man3/Padre::Wx::Dialog::Warning.3
  1989. Manifying blib/man3/Padre::Wx::Dialog::Form.3
  1990. Manifying blib/man3/Padre::Wx::Role::View.3
  1991. Manifying blib/man3/Padre::DB::RecentlyUsed.3
  1992. Manifying blib/man3/Padre::DB::Migrate.3
  1993. PLAVEN/Padre-0.84.tar.gz
  1994. /usr/bin/make -- OK
  1995. Running make test
  1996. blib/lib/auto/share/dist/Padre/locale -> blib/lib/auto/share/dist/Padre/locale
  1997. blib/lib/auto/share/dist/Padre/locale/ko.po -> blib/lib/auto/share/dist/Padre/locale/ko.mo
  1998. blib/lib/auto/share/dist/Padre/locale/no.po -> blib/lib/auto/share/dist/Padre/locale/no.mo
  1999. blib/lib/auto/share/dist/Padre/locale/cz.po -> blib/lib/auto/share/dist/Padre/locale/cz.mo
  2000. blib/lib/auto/share/dist/Padre/locale/hu.po -> blib/lib/auto/share/dist/Padre/locale/hu.mo
  2001. blib/lib/auto/share/dist/Padre/locale/he.po -> blib/lib/auto/share/dist/Padre/locale/he.mo
  2002. blib/lib/auto/share/dist/Padre/locale/de.po -> blib/lib/auto/share/dist/Padre/locale/de.mo
  2003. blib/lib/auto/share/dist/Padre/locale/es-es.po -> blib/lib/auto/share/dist/Padre/locale/es-es.mo
  2004. blib/lib/auto/share/dist/Padre/locale/it-it.po -> blib/lib/auto/share/dist/Padre/locale/it-it.mo
  2005. blib/lib/auto/share/dist/Padre/locale/nl-nl.po -> blib/lib/auto/share/dist/Padre/locale/nl-nl.mo
  2006. blib/lib/auto/share/dist/Padre/locale/pl.po -> blib/lib/auto/share/dist/Padre/locale/pl.mo
  2007. blib/lib/auto/share/dist/Padre/locale/fa.po -> blib/lib/auto/share/dist/Padre/locale/fa.mo
  2008. blib/lib/auto/share/dist/Padre/locale/ar.po -> blib/lib/auto/share/dist/Padre/locale/ar.mo
  2009. blib/lib/auto/share/dist/Padre/locale/zh-tw.po -> blib/lib/auto/share/dist/Padre/locale/zh-tw.mo
  2010. blib/lib/auto/share/dist/Padre/locale/fr-fr.po -> blib/lib/auto/share/dist/Padre/locale/fr-fr.mo
  2011. blib/lib/auto/share/dist/Padre/locale/ru.po -> blib/lib/auto/share/dist/Padre/locale/ru.mo
  2012. blib/lib/auto/share/dist/Padre/locale/zh-cn.po -> blib/lib/auto/share/dist/Padre/locale/zh-cn.mo
  2013. blib/lib/auto/share/dist/Padre/locale/tr.po -> blib/lib/auto/share/dist/Padre/locale/tr.mo
  2014. blib/lib/auto/share/dist/Padre/locale/ja.po -> blib/lib/auto/share/dist/Padre/locale/ja.mo
  2015. blib/lib/auto/share/dist/Padre/locale/pt-br.po -> blib/lib/auto/share/dist/Padre/locale/pt-br.mo
  2016. -blib/lib/auto/share/dist/Padre/locale/messages.pot
  2017. PERL_DL_NONLAZY=1 /usr/bin/perl5.12.3 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t
  2018. t/01-load.t ................ 1/44 # Tests find Wx: 0.98 wxWidgets 2.8.10
  2019. t/01-load.t ................ ok
  2020. t/02-new.t ................. ok
  2021. t/03-wx.t .................. skipped: Sometimes fails for unknown reasons, skipping for release till fixed
  2022. t/04-config.t .............. ok
  2023. t/05-project.t ............. ok
  2024. t/06-utils.t ............... ok
  2025. t/07-version.t ............. ok
  2026. t/08-style.t ............... ok
  2027. t/14-warnings.t ............ ok
  2028. 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.
  2029. BEGIN failed--compilation aborted at t/15-locale.t line 6.
  2030. t/15-locale.t .............. Dubious, test returned 2 (wstat 512, 0x200)
  2031. No subtests run
  2032. t/16-messages.t ............ ok
  2033. t/20_task_queue.t .......... ok
  2034. t/21_task_thread.t ......... ok
  2035. t/22_task_worker.t ......... ok
  2036. t/23_task_chain.t .......... ok
  2037. t/24_task_master.t ......... ok
  2038. t/25_task_handle.t ......... ok
  2039. t/26_task_eval.t ........... ok
  2040. t/27_task_signal.t ......... ok
  2041. t/28_task_manager.t ........ ok
  2042. t/40-perl.t ................ ok
  2043. t/41-perl-project.t ........ ok
  2044. t/42-perl-project-temp.t ... ok
  2045. t/43-perl-utils.t .......... ok
  2046. t/44-perl-syntax.t ......... ok
  2047. t/50-browser.t ............. skipped: Cannot run as root
  2048. t/60-db.t .................. ok
  2049. t/61-directory-path.t ...... ok
  2050. t/62-migrate.t ............. ok
  2051. t/70-document.t ............ ok
  2052. t/72-dialog-html.t ......... ok
  2053. t/73-display.t ............. ok
  2054. t/74-history-combobox.t .... ok
  2055. t/75-autocomplete.t ........ ok
  2056. t/80-newline.t ............. ok
  2057. t/81-search.t .............. ok
  2058. t/82-plugin-manager.t ...... ok
  2059. t/83-autosave.t ............ ok
  2060. t/85-commandline.t ......... ok
  2061. t/91-vi.t .................. ok
  2062. t/92-padre-file.t .......... ok
  2063. t/93-padre-filename-win.t .. ok
  2064. t/94-padre-file-remote.t ... ok
  2065.  
  2066. Test Summary Report
  2067. -------------------
  2068. t/15-locale.t (Wstat: 512 Tests: 0 Failed: 0)
  2069. Non-zero exit status: 2
  2070. Parse errors: No plan found in TAP output
  2071. Files=43, Tests=1121, 90 wallclock secs ( 0.50 usr 0.18 sys + 28.22 cusr 3.44 csys = 32.34 CPU)
  2072. Result: FAIL
  2073. Failed 1/43 test programs. 0/1121 subtests failed.
  2074. make: *** [test_dynamic] Error 255
  2075. PLAVEN/Padre-0.84.tar.gz
  2076. 2 dependencies missing (Capture::Tiny,Template::Tiny); additionally test harness failed
  2077. /usr/bin/make test -- NOT OK
  2078. //hint// to see the cpan-testers results for installing this module, try:
  2079. reports PLAVEN/Padre-0.84.tar.gz
  2080. Running make install
  2081. make test had returned bad status, won't install without force
Advertisement
Add Comment
Please, Sign In to add comment