Mailing List Archive

[Bug 2700] bad error message is at line 3050
https://bugs.exim.org/show_bug.cgi?id=2700

Jasen Betts <jasen@treshna.com> changed:

What |Removed |Added
----------------------------------------------------------------------------
Priority|medium |low

--
You are receiving this mail because:
You are on the CC list for the bug.
--
## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
[Bug 2700] bad error message is at line 3050 [ In reply to ]
https://bugs.exim.org/show_bug.cgi?id=2700

Jeremy Harris <jgh146exb@wizmail.org> changed:

What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
Assignee|unallocated@exim.org |jgh146exb@wizmail.org

--
You are receiving this mail because:
You are on the CC list for the bug.
--
## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
[Bug 2700] bad error message is at line 3050 [ In reply to ]
https://bugs.exim.org/show_bug.cgi?id=2700

Git Commit <git@exim.org> changed:

What |Removed |Added
----------------------------------------------------------------------------
CC| |git@exim.org

--- Comment #1 from Git Commit <git@exim.org> ---
Git commit:
https://git.exim.org/exim.git/commitdiff/f39bb672424423847bce771bc31f5c13f2eb4185

commit f39bb672424423847bce771bc31f5c13f2eb4185
Author: Jasen Betts <jasen@xnet.co.nz>
AuthorDate: Mon Feb 22 13:37:24 2021 +0000
Commit: Jeremy Harris <jgh146exb@wizmail.org>
CommitDate: Mon Feb 22 13:37:24 2021 +0000

Testsuite: fix error message. Bug 2700
---
test/runtest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/runtest b/test/runtest
index 93a4b74..ed01ba7 100755
--- a/test/runtest
+++ b/test/runtest
@@ -3047,7 +3047,7 @@ my $eximinfo = "$parm_exim -d -C $parm_cwd/test-config
-DDIR=$parm_cwd -bP exim_
chomp(my @eximinfo = `$eximinfo 2>&1`);
die "$0: Can't run $eximinfo\n" if $? == -1;

-warn 'Got ' . $?>>8 . " from $eximinfo\n" if $?;
+warn 'Got ' . ($?>>8) . " from $eximinfo\n" if $?;
foreach (@eximinfo)
{
if (my ($version) = /^Exim version (\S+)/) {

--
You are receiving this mail because:
You are on the CC list for the bug.
--
## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##