Skip to content

Commit 4582bd8

Browse files
committed
Merge branch '3.3dev' into address_2952
2 parents e8098fc + 86700db commit 4582bd8

5 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name: Shellcheck
66
on:
77
pull_request:
88
paths-ignore:
9+
- 't/**'
910
- 'utils/**'
1011
- 'doc/**'
1112
- 'bin/**'

t/10_baseline_ipv4_http.t

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ my $socket_errors='(e|E)rror|FIXME|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand
3030
my $openssl_errors='(e|E)rror|FIXME|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found';
3131
my $json_errors='(id".*:\s"scanProblem"|severity".*:\s"FATAL"|"Scan interrupted")';
3232

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

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

t/12_diff_opensslversions.t

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ my @args="";
2323
# that can be done better but I am a perl n00b ;-)
2424
my $os="$^O";
2525

26+
# useful against "failed to flush stdout" messages
27+
STDOUT->autoflush(1);
28+
2629
die "Unable to open $prg" unless -f $prg;
2730
die "Unable to open $distro_openssl" unless -f $distro_openssl;
2831

t/21_baseline_starttls.t

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ my $openssl_regex_bl='(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client c
2828
my $openssl_fallback_cmd=""; # empty for Linux
2929
my $os="$^O";
3030

31+
# useful against "failed to flush stdout" messages
32+
STDOUT->autoflush(1);
33+
3134
# my $socket_json="";
3235
# my $openssl_json="";
3336
# $check2run_smtp="--jsonfile tmp.json $check2run_smtp";

t/23_client_simulation.t

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ my $openssl_out="";
2121
my $socket_regex_bl='(e|E)rror|\.\/testssl\.sh: line |(f|F)atal|(c|C)ommand not found';
2222
my $openssl_regex_bl='(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem|(c|C)ommand not found';
2323

24+
# useful against "failed to flush stdout" messages
25+
STDOUT->autoflush(1);
26+
2427
# my $socket_json="";
2528
# my $openssl_json="";
2629
# $check2run="--jsonfile tmp.json $check2run";

0 commit comments

Comments
 (0)