diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-04 14:51:31 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-04 14:51:31 +0000 |
commit | b6a0dbb26ce2dba9d03eec89ca9edd6c033b132a (patch) | |
tree | 6916518e5eb8b466639352c130c591b05b2bdde1 /test | |
parent | c73792d365065e35d0fa760c4edd6cd193be3b94 (diff) |
Testsuite: output library versions during startup
Diffstat (limited to 'test')
-rwxr-xr-x | test/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index 2b19f52e3..914af5e41 100755 --- a/test/runtest +++ b/test/runtest @@ -2586,7 +2586,7 @@ else die "Unable to check the TRUSTED_CONFIG_LIST, seems to be empty?\n"; } -open(EXIMINFO, "$parm_exim -bV -C $parm_cwd/test-config -DDIR=$parm_cwd |") || +open(EXIMINFO, "$parm_exim -d-all+transport -bV -C $parm_cwd/test-config -DDIR=$parm_cwd |") || die "** Cannot run $parm_exim: $!\n"; print "-" x 78, "\n"; @@ -2595,7 +2595,7 @@ while (<EXIMINFO>) { my(@temp); - if (/^Exim version/) { print; } + if (/^(Exim|Library) version/) { print; } elsif (/^Size of off_t: (\d+)/) { |