]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/run: show unexpected output lines in logs
authorEric Wong <e@yhbt.net>
Mon, 29 Jun 2020 00:30:52 +0000 (00:30 +0000)
committerEric Wong <e@yhbt.net>
Tue, 30 Jun 2020 03:08:28 +0000 (03:08 +0000)
This will help us catch warnings in new code and notice
inadvertantly skipped tests.

t/run.perl

index 017ca3e82c72be9f2e0665be26121129b3f9ac75..b1a0d2fe154c844b1c4e198468e5061cfd117288 100755 (executable)
@@ -61,7 +61,19 @@ our ($worker, $worker_test);
 sub test_status () {
        $? = 255 if $? == 0 && !$tb->is_passing;
        my $status = $? ? 'not ok' : 'ok';
-       print OLDOUT "$status $worker_test\n" if $log_suffix ne '';
+       chdir($cwd) or DIE "chdir($cwd): $!";
+       if ($log_suffix ne '') {
+               my $log = $worker_test;
+               $log =~ s/\.t\z/$log_suffix/;
+               if (open my $fh, '<', $log) {
+                       my @not_ok = grep(!/^(?:ok |[ \t]*#)/ms, <$fh>);
+                       pop @not_ok if $not_ok[-1] =~ /^[0-9]+\.\.[0-9]+$/;
+                       print OLDERR map { "# $log: $_" } @not_ok;
+               } else {
+                       print OLDERR "could not open: $log: $!\n";
+               }
+               print OLDOUT "$status $worker_test\n";
+       }
 }
 
 # Test::Builder or Test2::Hub may call exit() from plan(skip_all => ...)
@@ -112,7 +124,6 @@ my $start_worker = sub {
                        my $t = unpack('I', $buf);
                        run_test($todo->[$t]);
                        $tb->reset;
-                       chdir($cwd) or DIE "chdir: $!";
                }
                kill 'USR1', $producer if !$eof; # sets $eof in $producer
                DIE join('', map { "E: $_\n" } @err) if @err;