use strict ; local ($^W) = 1; #use warnings ; sub ok { my ($no, $ok) = @_ ; #++ $total ; #++ $totalBad unless $ok ; print "ok $no\n" if $ok ; print "not ok $no\n" unless $ok ; printf "# Failed test at line %d\n", (caller)[2] unless $ok ; } sub writeFile { my($filename, @strings) = @_ ; open (F, ">$filename") or die "Cannot open $filename: $!\n" ; binmode(F); foreach (@strings) { print F } close F ; } sub readFile { my ($filename) = @_ ; my ($string) = '' ; open (F, "<$filename") or die "Cannot open $filename: $!\n" ; binmode(F); while () { $string .= $_ } close F ; $string ; } my $Inc = '' ; if ($^O eq 'VMS') { $Inc = '-"I[.blib.lib]" -"I[.blib.arch]"'; } else { foreach (@INC) { $Inc .= "-I$_ " } } my $Perl = '' ; $Perl = ($ENV{'FULLPERL'} or $^X or 'perl') ; $Perl = "$Perl -w" ; my $examples = "./examples"; my $hello1 = <&1` ; ok(1, $? == 0) ; ok(2, $a eq $hello1 . $hello2) ; #print "? = $? [$a]\n"; # gzgrep # ###### $a = ($^O eq 'MSWin32' || $^O eq 'VMS' ? `$Perl $Inc ${examples}/gzgrep "^x" $file1 $file2 2>&1` : `$Perl $Inc ${examples}/gzgrep '^x' $file1 $file2 2>&1`) ; ok(3, $? == 0) ; ok(4, $a eq join('', grep(/^x/, @hello1, @hello2))) ; #print "? = $? [$a]\n"; unlink $file1, $file2 ; # filtdef/filtinf # ############## my $stderr = "err.out" ; unlink $stderr ; writeFile($file1, $hello1) ; writeFile($file2, $hello2) ; # there's no way to set binmode on backticks in Win32 so we won't use $a later $a = `$Perl $Inc ${examples}/filtdef $file1 $file2 2>$stderr` ; ok(5, $? == 0) ; ok(6, -s $stderr == 0) ; unlink $stderr; $a = `$Perl $Inc ${examples}/filtdef $file1 $file2 | $Perl $Inc ${examples}/filtinf 2>$stderr`; ok(7, $? == 0) ; ok(8, -s $stderr == 0) ; ok(9, $a eq $hello1 . $hello2) ; # gzstream # ######## { writeFile($file1, $hello1) ; $a = `$Perl $Inc ${examples}/gzstream <$file1 >$file2 2>$stderr` ; ok(10, $? == 0) ; ok(11, -s $stderr == 0) ; my $b = `$Perl $Inc ${examples}/gzcat $file2 2>&1` ; ok(12, $? == 0) ; ok(13, $b eq $hello1 ) ; } unlink $file1, $file2, $stderr ;