Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sort a bit the cmake file
[simgrid.git] / tools / tesh / tesh.pl
1 #! /usr/bin/perl
2
3 # Copyright (c) 2012-2014. The SimGrid Team.
4 # All rights reserved.
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the license (GNU LGPL) which comes with this package.
8 eval 'exec perl -S $0 ${1+"$@"}'
9   if $running_under_some_shell;
10
11 =encoding UTF-8
12
13 =head1 NAME
14
15 tesh -- testing shell
16
17 =head1 SYNOPSIS
18
19 B<tesh> [I<options>] I<tesh_file>
20
21 =cut
22 my($bindir)=".";
23 my($srcdir)=".";
24 my($timeout)=0;
25 my($time_to_wait)=0;
26 my $path = $0;
27 my $OS;
28 my $enable_coverage=0;
29 my $diff_tool=0;
30 my $diff_tool_tmp_fh=0;
31 my $diff_tool_tmp_filename=0;
32 my $sort_prefix = -1;
33 my $tesh_file;
34 my $tesh_name;
35 my $error=0;
36 my $exitcode=0;
37 my @bg_cmds;
38 my (%environ);
39 $SIG{'PIPE'} = 'IGNORE';
40 $path =~ s|[^/]*$||;
41 push @INC,$path;
42
43 use Getopt::Long qw(GetOptions);
44 use strict;
45 use Term::ANSIColor;
46 use Text::ParseWords;
47 use IPC::Open3;
48 use IO::File;
49
50 if($^O eq "linux"){
51     $OS = "UNIX";
52 }
53 else{
54     $OS = "WIN";
55     $ENV{"PRINTF_EXPONENT_DIGITS"} = "2";
56 }
57
58 ##
59 ## Command line option handling
60 ##
61
62 sub var_subst {
63     my ($text, $name, $value) = @_;
64     if ($value) {
65         $text =~ s/\${$name(?::[=-][^}]*)?}/$value/g;
66         $text =~ s/\$$name(\W|$)/$value$1/g;
67     }
68     else {
69         $text =~ s/\${$name:=([^}]*)}/$1/g;
70         $text =~ s/\${$name}//g;
71         $text =~ s/\$$name(\W|$)/$1/g;
72     }
73     return $text;
74 }
75
76 # option handling helper subs
77 sub cd_cmd {
78   my $directory=$_[1];
79   my $failure=1;
80   if (-e $directory && -d $directory) {
81     chdir("$directory");
82     print "[Tesh/INFO] change directory to $directory\n";
83   $failure=0;
84   } elsif (-e $directory) {
85     print "Cannot change directory to '$directory': it is not a directory\n";
86   } else {
87     print "Chdir to $directory failed: No such file or directory\n";
88   }
89   if($failure==1){
90   $error=1;
91   $exitcode=4;
92   print "Test suite `$tesh_file': NOK (system error)\n";
93   exit 4;
94   }
95 }
96
97 sub setenv_cmd {
98   my($var,$ctn);
99   if ($_[0] =~ /^(.*)=(.*)$/) {
100     ($var,$ctn)=($1,$2);
101   }elsif ($_[1] =~ /^(.*)=(.*)$/) {
102     ($var,$ctn)=($1,$2);
103   } else {
104       die "[Tesh/CRITICAL] Malformed argument to setenv: expected 'name=value' but got '$_[1]'\n";
105   }
106
107   print "[Tesh/INFO] setenv $var=$ctn\n";
108   $environ{$var} = $ctn;
109 }
110
111 # Main option parsing sub
112
113 sub get_options {
114   # remove the tesh file from the ARGV used
115   my @ARGV = @_;
116   $tesh_file = pop @ARGV;
117
118   # temporary arrays for GetOption
119   my @verbose = ();
120   my @cfg;
121   my $log; # ignored
122
123
124   my %opt = (
125     "help"  => 0,
126     "debug"   => 0,
127     "verbose" => 0
128     );
129
130   Getopt::Long::config('bundling', 'no_getopt_compat', 'no_auto_abbrev');
131
132   GetOptions(
133     'help|h'   => \$opt{'help'},
134
135     'verbose|v'  => \@verbose,
136     'debug|d'  => \$opt{"debug"},
137
138     'difftool=s' => \$diff_tool,
139
140     'cd=s'     => \&cd_cmd,
141     'timeout=s'  => \$opt{'timeout'},
142     'setenv=s'   => \&setenv_cmd,
143     'cfg=s'    => \@cfg,
144     'log=s'    => \$log,
145     'enable-coverage+'  => \$enable_coverage,
146     );
147
148   if($enable_coverage){
149     print "Enable coverage\n";
150   }
151
152   if($diff_tool){
153     use File::Temp qw/ tempfile /;
154     ($diff_tool_tmp_fh, $diff_tool_tmp_filename) = tempfile();
155     print "New tesh: $diff_tool_tmp_filename\n";
156   }
157
158   unless($tesh_file=~/(.*)\.tesh/){
159     $tesh_file="(stdin)";
160     $tesh_name="(stdin)";
161     print "Test suite from stdin\n";
162   }else{
163     $tesh_name=$1;
164     print "Test suite `$tesh_name'\n";
165   }
166
167   $opt{'verbose'} = scalar @verbose;
168   foreach (@cfg) {
169     $opt{'cfg'} .= " --cfg=$_";
170   }
171   return %opt;
172 }
173
174 my %opts = get_options(@ARGV);
175
176 ##
177 ## File parsing
178 ##
179 my($nb_arg)=0;
180 my($old_buffer);
181 my($linebis);
182 my($SIGABRT)=0;
183 my($verbose)=0;
184 my($return)=-1;
185 my($pid);
186 my($result);
187 my($result_err);
188 my($forked);
189 my($config)="";
190 my($tesh_command)=0;
191 my(@buffer_tesh)=();
192
193 #eval {
194   use POSIX;
195
196   sub exit_status {
197     my $status = shift;
198     if (POSIX::WIFEXITED($status)) {
199       $exitcode=POSIX::WEXITSTATUS($status)+40;
200       return "returned code ".POSIX::WEXITSTATUS($status);
201     } elsif (POSIX::WIFSIGNALED($status)) {
202       my $code;
203       if (POSIX::WTERMSIG($status) == SIGINT){$code="SIGINT"; }
204       elsif  (POSIX::WTERMSIG($status) == SIGTERM) {$code="SIGTERM"; }
205       elsif  (POSIX::WTERMSIG($status) == SIGKILL) {$code= "SIGKILL"; }
206       elsif  (POSIX::WTERMSIG($status) == SIGABRT) {$code="SIGABRT"; }
207       elsif  (POSIX::WTERMSIG($status) == SIGSEGV) {$code="SIGSEGV" ;}
208       $exitcode=POSIX::WTERMSIG($status)+4;
209       return "got signal $code";
210     }
211     return "Unparsable status. Is the process stopped?";
212   }
213 #};
214 #if ($@) { # no POSIX available?
215 #  warn "POSIX not usable to parse the return value of forked child: $@\n";
216 #  sub exit_status {
217 #    return "returned code -1 $@ ";
218 #  }
219 #}
220
221 sub exec_cmd {
222   my %cmd = %{$_[0]};
223   if ($opts{'debug'}) {
224     print "IN BEGIN\n";
225     map {print "  $_"} @{$cmd{'in'}};
226     print "IN END\n";
227     print "OUT BEGIN\n";
228     map {print "  $_"} @{$cmd{'out'}};
229     print "OUT END\n";
230     print "CMD: $cmd{'cmd'}\n";
231   }
232
233   # cleanup the command line
234   if($OS eq "WIN") {
235       var_subst($cmd{'cmd'}, "EXEEXT", ".exe");
236   } else {
237       var_subst($cmd{'cmd'}, "EXEEXT", "");
238   }
239
240   # substitute environ variables
241   foreach my $key (keys %environ) {
242       $cmd{'cmd'} = var_subst($cmd{'cmd'}, $key, $environ{$key});
243   }
244   # substitute remaining variables, if any
245   while ($cmd{'cmd'} =~ /\${(\w+)(?::[=-][^}]*)?}/) {
246       $cmd{'cmd'} = var_subst($cmd{'cmd'}, $1, "");
247   }
248   while ($cmd{'cmd'} =~ /\$(\w+)/) {
249       $cmd{'cmd'} = var_subst($cmd{'cmd'}, $1, "");
250   }
251
252   # add cfg options
253   $cmd{'cmd'} .= " $opts{'cfg'}" if (defined($opts{'cfg'}) && length($opts{'cfg'}));
254
255   # final cleanup
256   $cmd{'cmd'} =~ s/^\s+//;
257   $cmd{'cmd'} =~ s/\s+$//;
258
259   print "[$tesh_name:$cmd{'line'}] $cmd{'cmd'}\n" ;
260
261   ###
262   # exec the command line
263   ###  $line =~ s/\r//g;
264
265   $cmd{'got'} = IO::File->new_tmpfile;
266   $cmd{'got'}->autoflush(1);
267   local *E = $cmd{'got'};
268   $cmd{'pid'} = open3(\*CHILD_IN,  ">&E",  ">&E",
269                       quotewords('\s+', 0, $cmd{'cmd'}));
270
271   # push all provided input to executing child
272   map { print CHILD_IN "$_\n"; }  @{$cmd{'in'}};
273   close CHILD_IN;
274
275   # if timeout specified, fork and kill executing child at the end of timeout
276   if (defined($cmd{'timeout'}) or defined($opts{'timeout'})){
277     $time_to_wait= defined($cmd{'timeout'}) ? $cmd{'timeout'} : $opts{'timeout'};
278     $forked = fork();
279     $timeout=-1;
280     die "fork() failed: $!" unless defined $forked;
281     if ( $forked == 0 ) { # child
282       sleep $time_to_wait;
283       kill(SIGKILL, $cmd{'pid'});
284       exit $time_to_wait;
285     }
286   }
287
288
289   # Cleanup the executing child, and kill the timeouter brother on need
290   $cmd{'return'} = 0 unless defined($cmd{'return'});
291   if($cmd{'background'} != 1){
292     waitpid ($cmd{'pid'}, 0);
293     $cmd{'gotret'} = exit_status($?);
294     parse_out(\%cmd);
295   }else{
296     # & commands, which will be handled at the end
297     push @bg_cmds, \%cmd;
298     # no timeout for background commands
299     if($forked){
300        kill(SIGKILL, $forked);
301        $timeout=0;
302        $forked=0;
303     }
304   }
305 }
306
307
308 sub parse_out {
309   my %cmd = %{$_[0]};
310   my $gotret=$cmd{'gotret'};
311
312   my $wantret;
313
314   if(defined($cmd{'expect'}) and ($cmd{'expect'} ne "")){
315     $wantret = "got signal $cmd{'expect'}";
316   }else{
317     $wantret = "returned code ".(defined($cmd{'return'})? $cmd{'return'} : 0);
318   }
319
320   local *got = $cmd{'got'};
321   seek(got,0,0);
322   # pop all output from executing child
323   my @got;
324   while(defined(my $got=<got>)) {
325     $got =~ s/\r//g;
326     chomp $got;
327     print $diff_tool_tmp_fh "> $got\n" if ($diff_tool);
328
329     if (!($enable_coverage and $got=~ /^profiling:/)){
330       push @got, $got;
331     }
332   }
333
334   if ($cmd{'sort'}){
335     # Save the unsorted observed output to report it on error.
336     map { push @{$cmd{'unsorted got'}}, $_ } @got;
337
338     sub mysort{
339         substr($a, 0, $sort_prefix) cmp substr($b, 0, $sort_prefix)
340     }
341     use sort 'stable';
342     if ($sort_prefix>0) {
343         @got = sort mysort @got;
344     } else {
345         @got = sort @got;
346     }       
347     while (@got and $got[0] eq "") {
348       shift @got;
349     }
350
351     # Sort the expected output to make it easier to write for humans
352     if(defined($cmd{'out'})){
353       if ($sort_prefix>0) {
354           @{$cmd{'out'}} = sort mysort @{$cmd{'out'}};
355       } else {
356           @{$cmd{'out'}} = sort @{$cmd{'out'}};
357       }
358       while (@{$cmd{'out'}} and ${$cmd{'out'}}[0] eq "") {
359         shift @{$cmd{'out'}};
360       }
361     }
362   }
363
364   # Did we timeout ? If yes, handle it. If not, kill the forked process.
365
366   if($timeout==-1 and $gotret eq "got signal SIGKILL"){
367     $gotret="return code 0";
368     $timeout=1;
369     $gotret= "timeout after $time_to_wait sec";
370     $error=1;
371     $exitcode=3;
372     print STDERR "<$cmd{'file'}:$cmd{'line'}> timeouted. Kill the process.\n";
373   }else{
374     $timeout=0;
375   }
376   if($gotret ne $wantret) {
377     $error=1;
378     my $msg = "Test suite `$cmd{'file'}': NOK (<$cmd{'file'}:$cmd{'line'}> $gotret)\n";
379     if ($timeout!=1) {
380         $msg=$msg."Output of <$cmd{'file'}:$cmd{'line'}> so far:\n";
381     }
382     map {$msg .=  "|| $_\n"} @got;
383     if(!@got) {
384         if($timeout==1){
385         print STDERR "<$cmd{'file'}:$cmd{'line'}> No output before timeout\n";
386         }else{
387         $msg .= "||\n";
388         }
389     }
390     $timeout = 0;
391     print STDERR "$msg";
392   }
393
394
395   ###
396   # Check the result of execution
397   ###
398   my $diff;
399   if (defined($cmd{'output display'})){
400     print "[Tesh/INFO] Here is the (ignored) command output:\n";
401     map { print "||$_\n" } @got;
402   }
403   elsif (!defined($cmd{'output ignore'})){
404     $diff = build_diff(\@{$cmd{'out'}}, \@got);
405   }else{
406     print "(ignoring the output of <$cmd{'file'}:$cmd{'line'}> as requested)\n"
407   }
408   if (length $diff) {
409     print "Output of <$cmd{'file'}:$cmd{'line'}> mismatch".($cmd{'sort'}?" (even after sorting)":"").":\n";
410     map { print "$_\n" } split(/\n/,$diff);
411     if ($cmd{'sort'}) {
412         print "WARNING: Both the observed output and expected output were sorted as requested.\n";
413         print "WARNING: Output were only sorted using the $sort_prefix first chars.\n"
414           if ($sort_prefix>0);
415         print "WARNING: Use <! output sort 19> to sort by simulated date and process ID only.\n";
416         # print "----8<---------------  Begin of unprocessed observed output (as it should appear in file):\n";
417         # map {print "> $_\n"} @{$cmd{'unsorted got'}};
418         # print "--------------->8----  End of the unprocessed observed output.\n";
419     }
420
421     print "Test suite `$cmd{'file'}': NOK (<$cmd{'file'}:$cmd{'line'}> output mismatch)\n";
422     $error=1;
423     $exitcode=2;
424   }
425 }
426
427 sub mkfile_cmd {
428   my %cmd = %{$_[0]};
429   my $file = $cmd{'arg'};
430   print "[Tesh/INFO] mkfile $file\n";
431
432   unlink($file);
433   open(FILE,">$file") or die "[Tesh/CRITICAL] Unable to create file $file: $!\n";
434   print FILE join("\n", @{$cmd{'in'}});
435   print FILE "\n" if (scalar @{$cmd{'in'}} > 0);
436   close(FILE);
437 }
438
439 # parse tesh file
440 #my $teshfile=$tesh_file;
441 #$teshfile=~ s{\.[^.]+$}{};
442
443 unless($tesh_file eq "(stdin)"){
444   open TESH_FILE, $tesh_file or die "[Tesh/CRITICAL] Unable to open $tesh_file $!\n";
445 }
446
447 my %cmd; # everything about the next command to run
448 my $line_num=0;
449 my $finished =0;
450 LINE: while (not $finished and not $error) {
451   my $line;
452
453
454   if ($tesh_file ne "(stdin)" and !defined($line=<TESH_FILE>)){
455     $finished=1;
456     next LINE;
457   }elsif ($tesh_file eq "(stdin)" and !defined($line=<>)){
458     $finished=1;
459     next LINE;
460   }
461
462   $line_num++;
463   chomp $line;
464   $line =~ s/\r//g;
465   print "[TESH/debug] $line_num: $line\n" if $opts{'debug'};
466   my $next;
467   # deal with line continuations
468   while ($line =~ /^(.*?)\\$/) {
469     $next=<TESH_FILE>;
470     die "[TESH/CRITICAL] Continued line at end of file\n"
471       unless defined($next);
472     $line_num++;
473     chomp $next;
474     print "[TESH/debug] $line_num: $next\n" if $opts{'debug'};
475     $line = $1.$next;
476   }
477
478   # Push delayed commands on empty lines
479   unless ($line =~ m/^(.)(.*)$/) {
480     if (defined($cmd{'cmd'}))  {
481       exec_cmd(\%cmd);
482       %cmd = ();
483     }
484     print $diff_tool_tmp_fh "$line\n" if ($diff_tool);
485     next LINE;
486   }
487
488   my ($cmd,$arg) = ($1,$2);
489   print $diff_tool_tmp_fh "$line\n" if ($diff_tool and $cmd ne '>');
490   $arg =~ s/^ //g;
491   $arg =~ s/\r//g;
492   $arg =~ s/\\\\/\\/g;
493   # handle the commands
494   if ($cmd =~ /^#/) {    #comment
495   } elsif ($cmd eq '>'){    #expected result line
496     print "[TESH/debug] push expected result\n" if $opts{'debug'};
497     push @{$cmd{'out'}}, $arg;
498
499   } elsif ($cmd eq '<') {    # provided input
500     print "[TESH/debug] push provided input\n" if $opts{'debug'};
501     push @{$cmd{'in'}}, $arg;
502
503   } elsif ($cmd eq 'p') {    # comment
504     print "[$tesh_name:$line_num] $arg\n";
505
506   } elsif ($cmd eq '$') {  # Command
507     # if we have something buffered, run it now
508     if (defined($cmd{'cmd'})) {
509       exec_cmd(\%cmd);
510       %cmd = ();
511     }
512     if ($arg =~ /^\s*mkfile /){      # "mkfile" command line
513       die "[TESH/CRITICAL] Output expected from mkfile command!\n" if scalar @{cmd{'out'}};
514
515       $cmd{'arg'} = $arg;
516       $cmd{'arg'} =~ s/\s*mkfile //;
517       mkfile_cmd(\%cmd);
518       %cmd = ();
519
520     } elsif ($arg =~ /^\s*cd /) {
521       die "[TESH/CRITICAL] Input provided to cd command!\n" if scalar @{cmd{'in'}};
522       die "[TESH/CRITICAL] Output expected from cd command!\n" if scalar @{cmd{'out'}};
523
524       $arg =~ s/^ *cd //;
525       cd_cmd("",$arg);
526       %cmd = ();
527
528     } else { # regular command
529       $cmd{'cmd'} = $arg;
530       $cmd{'file'} = $tesh_file;
531       $cmd{'line'} = $line_num;
532     }
533   }
534   elsif($cmd eq '&'){      # parallel command line
535
536     if (defined($cmd{'cmd'})) {
537       exec_cmd(\%cmd);
538       %cmd = ();
539     }
540     $cmd{'background'} = 1;
541     $cmd{'cmd'} = $arg;
542     $cmd{'file'} = $tesh_file;
543     $cmd{'line'} = $line_num;
544   }
545   elsif($line =~ /^!\s*output sort/){    #output sort
546     if (defined($cmd{'cmd'})) {
547       exec_cmd(\%cmd);
548       %cmd = ();
549     }
550     $cmd{'sort'} = 1;
551     if ($line =~ /^!\s*output sort\s+(\d+)/) {
552         $sort_prefix = $1;
553     }
554   }
555   elsif($line =~ /^!\s*output ignore/){    #output ignore
556     if (defined($cmd{'cmd'})) {
557       exec_cmd(\%cmd);
558       %cmd = ();
559     }
560     $cmd{'output ignore'} = 1;
561   }
562   elsif($line =~ /^!\s*output display/){    #output display
563     if (defined($cmd{'cmd'})) {
564       exec_cmd(\%cmd);
565       %cmd = ();
566     }
567     $cmd{'output display'} = 1;
568   }
569   elsif($line =~ /^!\s*expect signal (\w*)/) {#expect signal SIGABRT
570     if (defined($cmd{'cmd'})) {
571       exec_cmd(\%cmd);
572       %cmd = ();
573     }
574 print "hey\n";
575     $cmd{'expect'} = "$1";
576   }
577   elsif($line =~ /^!\s*expect return/){    #expect return
578     if (defined($cmd{'cmd'})) {
579       exec_cmd(\%cmd);
580       %cmd = ();
581     }
582     $line =~ s/^! expect return //g;
583     $line =~ s/\r//g;
584     $cmd{'return'} = $line;
585   }
586   elsif($line =~ /^!\s*setenv/){    #setenv
587     if (defined($cmd{'cmd'})) {
588       exec_cmd(\%cmd);
589       %cmd = ();
590     }
591     $line =~ s/^! setenv //g;
592     $line =~ s/\r//g;
593     setenv_cmd($line);
594   }
595   elsif($line =~ /^!\s*include/){    #include
596     if (defined($cmd{'cmd'})) {
597       exec_cmd(\%cmd);
598       %cmd = ();
599     }
600     print color("red"), "[Tesh/CRITICAL] need include";
601     print color("reset"), "\n";
602     die;
603   }
604   elsif($line =~ /^!\s*timeout/){    #timeout
605     if (defined($cmd{'cmd'})) {
606       exec_cmd(\%cmd);
607       %cmd = ();
608     }
609     $line =~ s/^! timeout //;
610     $line =~ s/\r//g;
611     $cmd{'timeout'} = $line;
612   } else {
613     die "[TESH/CRITICAL] parse error: $line\n";
614   }
615   if($forked){
616    kill(SIGKILL, $forked);
617    $timeout=0;
618   }
619
620 }
621
622
623
624 # Deal with last command
625 if (defined($cmd{'cmd'})) {
626   exec_cmd(\%cmd);
627   %cmd = ();
628 }
629
630
631 if($forked){
632    kill(SIGKILL, $forked);
633    $timeout=0;
634 }
635
636 foreach(@bg_cmds){
637   my %test=%{$_};
638   waitpid ($test{'pid'}, 0);
639   $test{'gotret'} = exit_status($?);
640   parse_out(\%test);
641 }
642
643 @bg_cmds=();
644
645 if ($diff_tool) {
646   close $diff_tool_tmp_fh;
647   system("$diff_tool $diff_tool_tmp_filename $tesh_file");
648   unlink $diff_tool_tmp_filename;
649 }
650
651 if($error !=0){
652     exit $exitcode;
653 }elsif($tesh_file eq "(stdin)"){
654     print "Test suite from stdin OK\n";
655 }else{
656     print "Test suite `$tesh_name' OK\n";
657 }
658
659 #my (@a,@b);
660 #push @a,"bl1";   push @b,"bl1";
661 #push @a,"bl2";   push @b,"bl2";
662 #push @a,"bl3";   push @b,"bl3";
663 #push @a,"bl4";   push @b,"bl4";
664 #push @a,"bl5";   push @b,"bl5";
665 #push @a,"bl6";   push @b,"bl6";
666 #push @a,"bl7";   push @b,"bl7";
667 ##push @a,"Perl";  push @b,"ruby";
668 #push @a,"END1";   push @b,"END1";
669 #push @a,"END2";   push @b,"END2";
670 #push @a,"END3";   push @b,"END3";
671 #push @a,"END4";   push @b,"END4";
672 #push @a,"END5";   push @b,"END5";
673 #push @a,"END6";   push @b,"END6";
674 #push @a,"END7";   push @b,"END7";
675 #print "Identical:\n". build_diff(\@a,\@b);
676
677 #@a = (); @b =();
678 #push @a,"AZE"; push @b,"EZA";
679 #print "Different:\n".build_diff(\@a,\@b);
680
681 use lib "@CMAKE_BINARY_DIR@/bin" ;
682
683 use Diff qw(diff); # postpone a bit to have time to change INC
684
685 sub build_diff {
686   my $res;
687   my $diff = Diff->new(@_);
688
689   $diff->Base( 1 );   # Return line numbers, not indices
690   my $chunk_count = $diff->Next(-1); # Compute the amount of chuncks
691   return ""   if ($chunk_count == 1 && $diff->Same());
692   $diff->Reset();
693   while(  $diff->Next()  ) {
694     my @same = $diff->Same();
695     if ($diff->Same() ) {
696       if ($diff->Next(0) > 1) { # not first chunk: print 2 first lines
697         $res .= '  '.$same[0]."\n" ;
698         $res .= '  '.$same[1]."\n" if (scalar @same>1);
699       }
700       $res .= "...\n"  if (scalar @same>2);
701 #    $res .= $diff->Next(0)."/$chunk_count\n";
702       if ($diff->Next(0) < $chunk_count) { # not last chunk: print 2 last lines
703         $res .= '  '.$same[scalar @same -2]."\n" if (scalar @same>1);
704         $res .= '  '.$same[scalar @same -1]."\n";
705       }
706     }
707     next if  $diff->Same();
708     map { $res .= "- $_\n" } $diff->Items(1);
709     map { $res .= "+ $_\n" } $diff->Items(2);
710   }
711   return $res;
712 }
713
714