X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/23a217d97daf7e76ff6f586af43d13892fafa42b..a09f294202729d7e532a1584536fa14e491a0b71:/test/runtest diff --git a/test/runtest b/test/runtest index 0021f3ecc..373043c4d 100755 --- a/test/runtest +++ b/test/runtest @@ -1088,6 +1088,9 @@ RESET_AFTER_EXTRA_LINE_READ: # 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:/; @@ -2714,7 +2717,7 @@ if (defined $parm_trusted_config_list) open(TCL, $parm_trusted_config_list) or die "Can't open $parm_trusted_config_list: $!\n"; my $test_config = getcwd() . '/test-config'; die "Can't find '$test_config' in TRUSTED_CONFIG_LIST $parm_trusted_config_list." - if not grep { /^$test_config$/ } ; + if not grep { /^\Q$test_config\E$/ } ; } else {