mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 11:02:24 +00:00
Move test build scripts.
This commit is contained in:
parent
b2e446d352
commit
78540bcaba
4 changed files with 0 additions and 17 deletions
|
|
@ -1,17 +0,0 @@
|
||||||
#!perl -w
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
use POSIX "strftime";
|
|
||||||
|
|
||||||
# Now parse the combined logs extracting build pass messages
|
|
||||||
# lub32 20.47.55 --- Branch v2docs ubuntu gcc ILP32 confidence tests passed ---
|
|
||||||
|
|
||||||
open(my $buildlog, "</tmp/buildall.log") // die "Could not read buildall.log.";
|
|
||||||
open(my $passes, ">log/buildpasses.log") // die "Could not create buildpasses.log.";
|
|
||||||
while (<$buildlog>) {
|
|
||||||
if (/ --- Branch .* confidence tests passed ---/) {
|
|
||||||
print $passes $_;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
close($buildlog);
|
|
||||||
close($passes);
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue