1
0
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:
Stefan Metzmacher 2009-11-16 16:34:13 +01:00 committed by Stefan Metzmacher
parent 36d0b1fa0d
commit 259c1d73bf
3 changed files with 9 additions and 0 deletions

View File

@ -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,

View File

@ -59,6 +59,9 @@ exit(1) if (not $result);
my $msg_ops;
# we want unbuffered output
$| = 1;
my $statistics = {
SUITES_FAIL => 0,

View File

@ -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