Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the IO-All CPAN distribution.

Report information
The Basics
Id: 6262
Status: resolved
Priority: 0/
Queue: IO-All

People
Owner: Nobody in particular
Requestors: ron [...] savage.net.au
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: V 0.17: OS-dependent tests, and tied files
(1) I had to change a few quotes to get this test to work under Win2K. The seemingly identical lines are because my editor chopped off your trailing blanks :-). C:\Perl-modules\IO-All-0.17>diff t/synopsis3.t /temp/synopsis3.t 13c13 < undef $/; --- Show quoted text
> undef $/;
16c16 < open TEST, '-|', qq{perl -Ilib -MIO::All -e 'io("-")->print(io("-")->slurp)' < t/mystuff} or die "open failed: $!"; --- Show quoted text
> open TEST, '-|', qq{perl -Ilib -MIO::All -e "io('-')->print(io('-')->slurp)" <
t/mystuff} or die "open failed: $!"; 23c23 < # $stdout->buffer($stdin->buffer); --- Show quoted text
> # $stdout->buffer($stdin->buffer);
25c25 < open TEST, '-|', qq{perl -Ilib -MIO::All -e 'my \$stdin = io("-");my \$stdout = io("-");\$stdout->buffer(\$stdin->buffer);\$stdout->write while \$stdin->read' < t/mystuff} or die "open failed: $!"; --- Show quoted text
> open TEST, '-|', qq{perl -Ilib -MIO::All -e "my \$stdin = io('-');my \$stdout
= io('-');\$stdout->buffer(\$stdin->buffer);\$stdout->write while \$stdin->read" < t/mystuff} or die "open failed: $!"; 36c36 < open TEST, '-|', qq{perl -Ilib -MIO::All -e 'my \$stdin = io("-");my \$string_ out = io("\\\$");while (my \$line = \$stdin->getline("")) {\$string_out->print(\ $line)} print \${\$string_out->string_ref}' < t/mystuff} or die "open failed: $! "; --- Show quoted text
> open TEST, '-|', qq{perl -Ilib -MIO::All -e "my \$stdin = io('-');my \$string_
out = io('\$');while (my \$line = \$stdin->getline('')) {\$string_out->print(\$l ine)} print \${\$string_out->string_ref}" < t/mystuff} or die "open failed: $!"; (2) I could not get t/tie_file.t to work, even after upgrading Tie::File to V 0.96. C:\Perl-modules\IO-All-0.17>perl t/tie_file.t 1..2 Modification of non-creatable array value attempted, subscript -1 at t/tie_file. t line 14. # Looks like your test died before it could output anything.