[commit] master: autotest: add missing `next` in cmptrash()
mailbox synchronizer
Brought to you by:
ossi
|
From: Oswald B. <os...@us...> - 2022-06-20 15:37:28
|
commit c9e57161cc6f605282b084d63cfd19531576de20
Author: Oswald Buddenhagen <os...@us...>
Date: Mon Jun 20 17:33:03 2022 +0200
autotest: add missing `next` in cmptrash()
this doesn't really matter, as the branches are mutually exclusive
anyway, but still.
amends 01329bdf.
src/run-tests.pl | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/run-tests.pl b/src/run-tests.pl
index 144ba94..459142a 100755
--- a/src/run-tests.pl
+++ b/src/run-tests.pl
@@ -631,6 +631,7 @@ sub cmptrash($$$)
if (!defined($ph)) {
print STDERR "Missing message $bn:".mn($num)."\n";
$ret = 1;
+ next;
}
if ($ph) {
print STDERR "Message $bn:".mn($num)." is placeholder\n";
|