diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-10-23 17:23:49 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-10-23 17:23:49 +0100 |
commit | ef8176594c130feebefad040420fbc4d637e9571 (patch) | |
tree | ebd464de1677e9af6fa306ce1c74d72f378f4254 /test/runtest | |
parent | ad7fc6eb6895ff40cc9998d157d1401bbf43c35e (diff) |
Testsuite: account for platforms not supporting TFO
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/runtest b/test/runtest index b601af6c7..afaaee3b2 100755 --- a/test/runtest +++ b/test/runtest @@ -1045,6 +1045,14 @@ RESET_AFTER_EXTRA_LINE_READ: # Spool filesystem free space changes on different systems. s/^((?:spool|log) directory space =) -?\d+K (inodes =)\s*-?\d+/$1 nnnnnK $2 nnnnn/; + # Not all platforms support TCP Fast Open, and the compile omits the check + if (/^((>>> )?Connecting to .* )in hosts_try_fastopen\? no \(option unset\)$/) + { + my $p = $1; + $_ = <IN>; + s/^/$p/; + } + # When Exim is checking the size of directories for maildir, it uses # the check_dir_size() function to scan directories. Of course, the order # of the files that are obtained using readdir() varies from system to |