isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 03a38e48d3e8b555e55d5b2643dfdaf165ef5045
parent 27f0c470109047e956ae50e783334081955e6e4b
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Wed, 26 Jan 2022 18:45:29 +0100

autotest: use sub-string matching for test selection

typing the full names is rather tedious when they get long.
also, using sub-strings, we can match multiple tests with one argument.

Diffstat:
Msrc/run-tests.pl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/run-tests.pl b/src/run-tests.pl @@ -789,7 +789,7 @@ sub test($$$$) { my ($ttl, $sx, $tx, $sfx) = @_; - return 0 if (scalar(@ARGV) && !grep { $_ eq $ttl } @ARGV); + return 0 if (scalar(@ARGV) && !grep { index($ttl, $_) >= 0 } @ARGV); print "Testing: ".$ttl." ...\n"; writecfg($sfx);