Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions t/10_baseline_ipv4_http.t
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ my $socket_errors='(e|E)rror|FIXME|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand
my $openssl_errors='(e|E)rror|FIXME|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found';
my $json_errors='(id".*:\s"scanProblem"|severity".*:\s"FATAL"|"Scan interrupted")';

# useful against "failed to flush stdout" messages
STDOUT->autoflush(1);

die "Unable to open $prg" unless -f $prg;

Expand Down
3 changes: 3 additions & 0 deletions t/12_diff_opensslversions.t
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ my @args="";
# that can be done better but I am a perl n00b ;-)
my $os=`perl -e 'print "$^O";'`;

# useful against "failed to flush stdout" messages
STDOUT->autoflush(1);

die "Unable to open $prg" unless -f $prg;
die "Unable to open $distro_openssl" unless -f $distro_openssl;

Expand Down
3 changes: 3 additions & 0 deletions t/21_baseline_starttls.t
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ my $openssl_out="";
my $socket_regex_bl='(e|E)rror|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand not found';
my $openssl_regex_bl='(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found';

# useful against "failed to flush stdout" messages
STDOUT->autoflush(1);

# my $socket_json="";
# my $openssl_json="";
# $check2run_smtp="--jsonfile tmp.json $check2run_smtp";
Expand Down
3 changes: 3 additions & 0 deletions t/23_client_simulation.t
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ my $openssl_out="";
my $socket_regex_bl='(e|E)rror|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand not found';
my $openssl_regex_bl='(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found';

# useful against "failed to flush stdout" messages
STDOUT->autoflush(1);

# my $socket_json="";
# my $openssl_json="";
# $check2run="--jsonfile tmp.json $check2run";
Expand Down
Loading