# Not all platforms build with DKIM enabled
next if /^PDKIM >> Body data for hash, canonicalized/;
+ # Not all platforms have sendfile support
+ next if /^cannot use sendfile for body: no support$/;
+
# Parts of DKIM-specific debug output depend on the time/date
next if /^date:\w+,\{SP\}/;
next if /^PDKIM \[[^[]+\] (Header hash|b) computed:/;
{
# Berkeley DB version differences
next if / Berkeley DB error: /;
+
+ # CHUNKING: exact sizes depend on hostnames in headers
+ s/(=>.* K C="250- \d)\d+ (byte chunk, total \d)\d+/$1nn $2nn/;
}
# ======== All files other than stderr ========
'keep' => \$save_output,
'slow' => \$slow,
'valgrind' => \$valgrind,
- 'range=i{2}' => \my @range_wanted,
+ 'range=s{2}' => \my @range_wanted,
'test=i@' => \my @tests_wanted,
'flavor|flavour=s' => $flavour,
'help' => sub { pod2usage(-exit => 0) },
=item B<--range> I<n0> I<n1>
-Run tests between (including) I<n0> and I<n1>.
+Run tests between (including) I<n0> and I<n1>. A "+" may be used to specify the "last
+test available".
=item B<--slow>