isync

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

commit 3d81ccbf21dc5f81987365e6ff8c6e0ddc1f26e4
parent 3dcb393de2b3a5202e96a61f997febfdf6e9d667
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun,  3 Nov 2013 20:17:54 +0100

make it possible to run only selected tests

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

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