Add dubug dump to Texts.Mod to help catch OpenBSD specific read failure.

This commit is contained in:
David Brown 2016-12-10 18:44:59 +00:00
parent c3fc777f6f
commit 18a365429b
3 changed files with 57 additions and 6 deletions

View file

@ -75,9 +75,9 @@ sub parselog {
if (/^([0-9.]+) --- Make completed ---$/) {
# Go back and convert 'Started' status to 'Failed'.
if ($branch =~ m/^Build on/) {$branch = "Build on $fn failed to start.";}
if ($compilerok eq "Started") {$compilerok = "Failed.";}
if ($libraryok eq "Started") {$libraryok = "Failed.";}
if ($tests eq "Started") {$tests = "Failed.";}
if ($compilerok eq "Started") {$compilerok = "Failed";}
if ($libraryok eq "Started") {$libraryok = "Failed";}
if ($tests eq "Started") {$tests = "Failed";}
}
}
close($log);