X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/5f122889caaa3746001f7e1f8e5caca6f6181393..650ececb91dcf4567d31b0f960d75becf798f9df:/test/runtest diff --git a/test/runtest b/test/runtest index 4f1d18edb..4543915b0 100755 --- a/test/runtest +++ b/test/runtest @@ -311,7 +311,8 @@ RESET_AFTER_EXTRA_LINE_READ: s?\Q$parm_cwd\E?TESTSUITE?g; # Replace the Exim version number (may appear in various places) - s/Exim \d+\.\d+[\w-]*/Exim x.yz/i; + # patchexim should have fixed this for us + #s/(Exim) \d+\.\d+[\w_-]*/$1 x.yz/i; # Replace Exim message ids by a unique series s/((?:[^\W_]{6}-){2}[^\W_]{2}) @@ -738,6 +739,8 @@ RESET_AFTER_EXTRA_LINE_READ: # drop lookups next if /^Lookups \(built-in\):/; + next if /^Loading lookup modules from/; + next if /^Loaded \d+ lookup modules/; next if /^Total \d+ lookups/; # drop compiler information @@ -1861,6 +1864,13 @@ autoflush STDOUT 1; print "Exim tester $testversion\n"; +################################################## +# Some tests check created file modes # +################################################## + +umask 022; + + ################################################## # Check for the "less" command # ##################################################