mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-24 03:15:00 +08:00
Parse condstack in final printing.
This commit is contained in:
@@ -240,4 +240,16 @@ foreach my $line ( @buffer3 )
|
||||
# print STDERR @condstack, "LINE: $line\n";
|
||||
}
|
||||
|
||||
print STDOUT @buffer4;
|
||||
print STDERR @buffer4 if $verbose > 2;
|
||||
|
||||
foreach my $line (@buffer4) {
|
||||
if ( $line =~ /^(<.*>):(.*)$/ ) {
|
||||
if ( $1 =~ m/.*<FALSE:.*$/ ) {
|
||||
} else {
|
||||
print STDOUT "$2\n";
|
||||
}
|
||||
} else {
|
||||
die "Unexpected value: $line\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user