mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Remove buffering of test output by making stack fixers not buffer their standard output. (Bug 510014)
This commit is contained in:
parent
7b4a2bb63d
commit
86b1e0bafb
@ -243,6 +243,7 @@ sub addr2line_pipe($) {
|
||||
return $pipe;
|
||||
}
|
||||
|
||||
select STDOUT; $| = 1; # make STDOUT unbuffered
|
||||
while (<>) {
|
||||
my $line = $_;
|
||||
if ($line =~ /^([ \|0-9-]*)(.*) ?\[([^ ]*) \+(0x[0-9A-F]{1,8})\](.*)$/) {
|
||||
|
@ -219,6 +219,7 @@ sub nm_lookup($$) {
|
||||
};
|
||||
}
|
||||
|
||||
select STDOUT; $| = 1; # make STDOUT unbuffered
|
||||
while (<>) {
|
||||
my $line = $_;
|
||||
if ($line =~ /^([ \|0-9-]*)(.*) ?\[([^ ]*) \+(0x[0-9A-F]{1,8})\](.*)$/) {
|
||||
|
Loading…
Reference in New Issue
Block a user