mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
selftest: make sure we don't buffer any output
metze
This commit is contained in:
parent
36d0b1fa0d
commit
259c1d73bf
@ -82,6 +82,9 @@ if (defined($opt_expected_failures)) {
|
||||
@expected_failures = Subunit::Filter::read_test_regexes($opt_expected_failures);
|
||||
}
|
||||
|
||||
# we want unbuffered output
|
||||
$| = 1;
|
||||
|
||||
my $statistics = {
|
||||
TESTS_UNEXPECTED_OK => 0,
|
||||
TESTS_EXPECTED_OK => 0,
|
||||
|
@ -59,6 +59,9 @@ exit(1) if (not $result);
|
||||
|
||||
my $msg_ops;
|
||||
|
||||
# we want unbuffered output
|
||||
$| = 1;
|
||||
|
||||
my $statistics = {
|
||||
SUITES_FAIL => 0,
|
||||
|
||||
|
@ -348,6 +348,9 @@ exit(1) if (not $result);
|
||||
|
||||
ShowHelp() if ($opt_help);
|
||||
|
||||
# we want unbuffered output
|
||||
$| = 1;
|
||||
|
||||
my @tests = @ARGV;
|
||||
|
||||
# quick hack to disable rpc validation when using valgrind - its way too slow
|
||||
|
Loading…
Reference in New Issue
Block a user